-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (37 loc) · 1.29 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
from setuptools import setup, find_packages
with open('dtcli/version.py') as f:
exec(f.read())
setup(
name="dottorrent-cli",
version=__version__,
packages=find_packages(),
entry_points={
'console_scripts': [
'dottorrent = dtcli.cli:main'
]
},
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=[
'dottorrent>=1.9.2',
'humanfriendly>=2.1,<3.0',
'tqdm>=4.8.4,<5.0.0'
],
# metadata for upload to PyPI
author="Kevin Zhang",
author_email="[email protected]",
description="CLI tool for creating .torrent files",
long_description=open('README.rst').read(),
keywords="bittorrent torrent bencode cli",
url="https://github.com/kz26/dottorrent-cli", # project home page, if any
# could also include long_description, download_url, classifiers, etc.
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'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'
]
)