-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (25 loc) · 931 Bytes
/
setup.py
File metadata and controls
executable file
·26 lines (25 loc) · 931 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
#!/usr/bin/env python3
'''
Setup script to install dht-crawler
'''
from distutils.core import setup
setup(name='dht_crawler',
version='1.0',
description='Simple dht crawler with different experimental mechanics.',
url='https://github.com/Matovidlo/DHT-crawler',
author='Martin Vaško',
author_email='[email protected]',
packages=['dht_crawler'],
requires=['bencoder', 'bencode'],
# py_modules=['bencoder'],
classifiers=[
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
],
long_description=open('README.md').read(),
)