-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
38 lines (33 loc) · 1.33 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
from setuptools import setup, find_packages
with open('dottorrentGUI/version.py') as f:
exec(f.read())
setup(
name="dottorrent-gui",
version=__version__,
packages=find_packages(),
entry_points={
'gui_scripts': [
'dottorrent-gui = dottorrentGUI.gui:main'
]
},
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires=['dottorrent>=1.9.2', 'humanfriendly', 'PyQt5>=5.7'],
# metadata for upload to PyPI
author="Kevin Zhang",
author_email="[email protected]",
description="An advanced GUI torrent file creator with batch functionality, powered by PyQt and dottorrent",
long_description=open('README.rst').read(),
keywords="bittorrent torrent",
url="https://github.com/kz26/dottorrent-gui", # 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 :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)