forked from tomster/tvbutler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.21 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
33
34
35
36
37
38
from setuptools import setup
version = '0.1b2dev'
setup(name='tvbutler',
version=version,
description="tvbutler reads RSS feeds from http://tvtorrents.com and "
"downloads torrents of new episodes for you in your preferred quality",
long_description=open('README.rst').read() + "\n" +
open("HISTORY.rst").read(),
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Topic :: Multimedia :: Video",
"Topic :: Communications :: File Sharing",
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='rss bittorrent tv',
author='Tom Lazar',
author_email='[email protected]',
url='https://github.com/tomster/tvbutler',
license='BSD',
packages=['tvbutler'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'distribute',
'feedparser',
'sqlalchemy',
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
tvbutler=tvbutler.command:main
""",
)