-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (45 loc) · 1.36 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
from setuptools import find_packages
from iptt import __version__
def reqs_parse(path):
with open(path) as f:
return f.read().splitlines()
install_reqs = reqs_parse('requirements.txt')
found_packages = find_packages(exclude=['tests', 'tests.*'])
with open('README.rst', 'r') as fh:
long_description = fh.read()
setup(
name='iptt',
version=__version__,
license='DEV-NULL',
author='cipres',
author_email='[email protected]',
url='https://gitlab.com/galacteek/iptt/iptt',
description='InterPlanetary Tunnel Toolkit',
long_description=long_description,
packages=found_packages,
install_requires=install_reqs,
extras_require={
'uvloop': ['uvloop>=0.17.0']
},
entry_points={
'console_scripts': [
'iphttp = iptt.entrypoints:iphttp_run',
'iphttpd = iptt.entrypoints:iphttpd_run',
]
},
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
keywords=[
'ipfs',
'http'
]
)