-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.04 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.04 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
import os
from setuptools import setup
from DynamicRoutingUpdater import version
def readme():
with open('README.md', encoding='utf-8') as f:
return f.read()
setup(
name="pyDynamicRoutingUpdater",
long_description_content_type='text/markdown',
long_description=readme(),
packages=["DynamicRoutingUpdater"],
install_requires=[
"netifaces>=0.11.0",
"netaddr>=0.8.0"
],
version=version.__version__,
description="""
A Python library to modify and alter the routing table in according to configuration passed
""",
python_requires=">=3.9.0",
author="Brage Skjønborg",
author_email="bskjon@outlook.com",
url="https://github.com/iktdev-no/DynamicRoutingUpdater",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)