-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (26 loc) · 901 Bytes
/
setup.py
File metadata and controls
35 lines (26 loc) · 901 Bytes
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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='bendcode',
version='1.1.0',
description='Python module to decode Bencoded data',
long_description=long_description,
url='https://github.com/sanketh95/BenDcode',
author='Sanketh Mopuru',
author_email='sanketh.mopuru@gmail.com',
license='GPLv2',
keywords=['bencoding', 'bittorrent', 'decoding', 'encoding'],
packages=['bendcode'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)