forked from Tribler/py-ipv8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.47 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (42 loc) · 1.47 KB
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
from setuptools import find_packages, setup
with open("README.md") 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="3.2.1", # 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=[
"aiohttp",
"aiohttp_apispec",
"marshmallow",
"typing-extensions",
"packaging",
"ipv8_rust_tunnels"
],
extras_require={
"all": ["coverage"],
"tests": ["coverage"]
},
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking"
]
)