forked from crawln45/tranny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 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
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
"""
"""
from __future__ import absolute_import
import sys
from os.path import join, dirname
from setuptools import setup
import tranny
requirements = [l.strip() for l in open("requirements.txt").readlines()]
if sys.version_info < (2, 7):
requirements.append("argparse")
setup(
name="tranny",
version=tranny.__version__,
url="https://github.com/leighmacdonald/tranny/",
license="BSD-3",
description="Torrent management systems",
author="Leigh MacDonald",
author_email="[email protected]",
long_description=open(join(dirname(__file__), "README.md")).read(),
scripts=['tranny-cli.py'],
packages=[
"tranny",
"tranny.client",
"tranny.handlers",
"tranny.notification",
"tranny.provider",
"tranny.service"
],
package_data={'tranny': ['tranny/templates']},
install_requires=requirements,
test_suite="tests",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: BSD License"
]
)