-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (22 loc) · 836 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
#!/usr/bin/env python
import os
from distutils.core import setup
from pytpb import __version__, __maintainer__, __license__
setup(name='pytpb',
description='python client for thepiratebay.org website',
long_description = file(
os.path.join(os.path.dirname(__file__),'README')).read(),
license=__license__,
version=__version__,
maintainer=__maintainer__,
url='https://github.com/nduhamel/pytpb',
packages=['pytpb'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Operating System :: OS Independent'
]
)