summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: c6caa81fd62b5ff87ab1feb8f660512b1bc99fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

config = {
    'description': 'LibrePlanet schedule generator',
    'author': 'rsiddharth',
    'url': 'URL to get it at.',
    'download_url': 'Where to download it.',
    'author_email': 'rsiddharth@ninthfloor.org',
    'version': '0.0',
    'install_requires': ['nose'],
    'packages': ['lpschedule'],
    'scripts': [],
    'name': 'lpschedule-generator'
    }

setup(**config)