-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
39 lines (34 loc) · 1.11 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
from setuptools import setup, find_packages
import os, sys
version = __import__('rtorrent').__version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
required_pkgs = []
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="rtorrent-python",
version=version,
url='https://github.com/cjlucas/rtorrent-python',
author='Chris Lucas',
author_email='[email protected]',
maintainer='Chris Lucas',
maintainer_email='[email protected]',
description='A simple rTorrent interface written in Python',
long_description=read("README.md"),
keywords="rtorrent p2p",
license="MIT",
packages=find_packages(),
scripts=[],
install_requires=required_pkgs,
classifiers=classifiers,
include_package_data=True,
)