forked from Tribler/py-ipv8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.47 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyipv8',
author='Tribler',
description='The Python implementation of the IPV8 library',
long_description=long_description,
long_description_content_type='text/markdown',
version='2.4.0', # Do not change manually! Handled by github_increment_version.py
url='https://github.com/Tribler/py-ipv8',
package_data={'': ['*.*']},
packages=find_packages(),
py_modules=['ipv8_service'],
install_requires=[
"cryptography",
"libnacl",
"aiohttp",
"aiohttp_apispec",
"pyOpenSSL",
"pyasn1",
"marshmallow"
],
extras_require={
'netifaces': ["netifaces"],
'asynctest': ["asynctest"],
'coverage': ["coverage"]
},
tests_require=['coverage', 'asynctest'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking"
]
)