-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 989 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 989 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
from setuptools import find_packages, setup
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setup(
name="routingfilter",
version="2.3.3",
packages=find_packages(include=["routingfilter", "routingfilter.*"]),
include_package_data=True,
install_requires=["IPy~=1.1", "macaddress~=2.0.2"],
url="https://github.com/certego/RoutingFilter",
license="GNU LGPLv3",
author="Certego S.r.l.",
author_email="support@certego.net",
description="Generic Business Logic Implementation for Routing objects as python dictionaries",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
)