-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (25 loc) · 1011 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
from setuptools import setup
setup(name="NetFlowVizu",
version="0.6",
description="Network flow visualizer.",
long_description = open("README.rst").read(),
keywords="network, host, flow, traffic, communication, visualization, dia",
author="David Siroky",
author_email="[email protected]",
url="http://www.smallbulb.net/netflowvizu",
license="MIT License",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: System :: Networking",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization"
],
install_requires=["lxml", "pyyaml"],
scripts=["net_flow_vizu_dia.py"]
)