forked from gaffner/PyBitTorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 841 Bytes
/
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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='PyBitTorrent',
version='0.7.0',
author='Gaffner',
author_email='[email protected]',
url="https://github.com/gaffner/PyBitTorrent",
packages=['PyBitTorrent'],
licence='LICENSE.txt',
description='Download torrent files according to BitTorrent specifications',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'bitstring~=4.0.1',
'rich~=12.6.0',
'requests~=2.22.0',
]
)