-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·49 lines (47 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
from setuptools import setup
import sys
if not sys.version_info[0] == 3:
sys.exit("Sorry, Cistern only supports Python 3.")
setup(
name="cistern",
version="0.1.5",
license="MIT",
url="https://github.com/archangelic/cistern",
description="Command line tool for downloading torrents from RSS feeds.",
author="Michael Hancock",
author_email="[email protected]",
download_url=(
"https://github.com/archangelic/cistern/archive/v0.1.5.tar.gz"
),
install_requires=[
'click',
'configobj',
'feedparser',
'peewee',
'tabulate',
'transmissionrpc',
],
entry_points={
'console_scripts': [
'cistern=cistern.cistern:cli',
]
},
packages=[
'cistern',
],
keywords=['torrent', 'rss', 'transmission'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Topic :: Internet',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
)