-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (28 loc) · 1.12 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
from setuptools import setup, find_packages
with open('dottorrent/version.py') as f:
exec(f.read())
setup(
name="dottorrent",
version=__version__,
packages=find_packages(),
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['bencoder.pyx>=2.0.0'],
# metadata for upload to PyPI
author="Kevin Zhang",
author_email="[email protected]",
description="High-level Python 3 library for creating .torrent files",
long_description=open('README.rst').read(),
keywords="bittorrent torrent bencode",
url="https://github.com/kz26/dottorrent", # project home page, if any
# could also include long_description, download_url, classifiers, etc.
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)