-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·18 lines (17 loc) · 900 Bytes
/
setup.py
File metadata and controls
executable file
·18 lines (17 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
setup(
name='bencode_py3',
packages=['bencode'],
version='1.1329139006',
description="The BitTorrent bencode module as light-weight, standalone package, ported to Python 3",
author="Josh Rodd",
author_email="josh@rodd.us",
license="BitTorrent Open Source License",
keywords="bittorrent bencode bdecode python3 bencode_py3",
url="https://github.com/JoshRodd/bencode_py3",
download_url='https://github.com/JoshRodd/bencode_py3/archive/1.1329139006.tar.gz',
test_suite="test.testbencode",
long_description="""This package simply re-packages the existing bencoding and bdecoding implemention from the 'official' BitTorrent client as a separate, light-weight package for re-using them without having the entire BitTorrent software as a dependency, and then has been ported to Python 3.
""",
zip_safe=True,
)