Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: c17f11276b4e63e3a3903a0e0c1afcab7ecbb9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages

from webcheck import __version__, __homepage__

setup(
    name = 'webcheck',
    version = __version__,
    packages = find_packages(),
    entry_points = {
        'console_scripts': [
            'webcheck = webcheck.cmd:entry_point',
        ],
    },
    install_requires = ['setuptools', 'sqlalchemy'],
    extras_require = {
        'tidy': ['utidylib'],
        'soup': ['beautifulsoup'],
    },
    
    # metadata for pypi
    author = 'Arthur de Jong',
    author_email = 'arthur@arthurdejong.org',
    description = 'webcheck is a website checking tool for webmasters',
    license = 'GPL',
    keywords = 'spider',
    url = __homepage__,
)