-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.36 KB
/
setup.py
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
28
29
30
31
32
from setuptools import setup, find_packages
setup(
name='tvdosage',
version='0.1.3',
description='Keep your Tv Series dose going',
long_description=(open('README.md').read()),
url='http://github.com/jairot/dosage/',
license='MIT',
author='Jairo Trad',
author_email='[email protected]',
packages = find_packages(exclude=['*_test.py']),
py_modules = ['tvdosage'],
entry_points={
'console_scripts':
['dosagedaemon = tvdosage.dosagedaemon:main',
'tvdosage = tvdosage.tvdosage:main'
]},
install_requires=['ThePirateBay', 'argparse', 'beautifulsoup4', 'dateutils', 'lxml',
'mattdaemon','mccabe', 'peewee', 'purl', 'python-dateutil',
'pytz', 'six', 'timeout-decorator','transmissionrpc','wsgiref'],
include_package_data=True,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)