forked from cjlucas/rtorrent-python
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (41 loc) · 1.22 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
from setuptools import setup, find_namespace_packages
import os, sys
# version = __import__('rtorrent').__version__
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications :: File Sharing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name="new-rtorrent-python",
version='1.0.0-alpha',
url='https://github.com/sickchill/rtorrent-python',
author='Chris Lucas',
author_email='[email protected]',
maintainer='Dustyn Gibson',
maintainer_email='[email protected]',
description='A simple rTorrent interface written in Python',
keywords="rtorrent p2p",
license="MIT",
packages=find_namespace_packages(
exclude=[
"*.tests", "*.tests.*", "tests.*", "tests",
"doc", "doc.*"
]),
scripts=[],
install_requires=[
'bencodepy',
'requests'
],
tests_require=[
'nose'
],
test_suite='nose.collector',
classifiers=classifiers,
include_package_data=True,
)