-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
28 lines (24 loc) · 923 Bytes
/
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
from setuptools import setup, find_packages
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))]
version = "3.4.1"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pyNTM",
version=version,
py_modules=["pyNTM"],
packages=find_packages(),
install_requires=reqs,
include_package_data=True,
description="Network traffic modeler API written in Python 3",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tim Fiola",
author_email="[email protected]",
url="https://github.com/tim-fiola/network_traffic_modeler_py3",
download_url="https://github.com/tim-fiola/network_traffic_modeler_py3/tarball/%s"
% version,
keywords=["networking", "layer3", "failover", "modeling", "model", "pyNTM"],
classifiers=[],
)