-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.22 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.22 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
from setuptools import setup, find_packages
import sys, os
from glob import glob
version = '0.5.0'
setup(name='pynfdump',
version=version,
description="python interface to nfdump",
long_description="""\
pynfdump is a frontend to the nfdump CLI app
It supports normal, aggregation, and statistics modes.
It supports running nfdump on a remote host via ssh.
""",
classifiers=[
"Topic :: System :: Networking",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
],
keywords='nfdump netflow',
author='Justin Azoff',
author_email='JAzoff@uamail.albany.edu',
url='http://packages.python.org/pynfdump',
download_url="http://github.com/JustinAzoff/pynfdump/tree/master",
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
"python-dateutil",
"IPy",
],
tests_require=[ "nose" ],
extras_require = {
'docs' : ['sphinx'],
},
scripts=glob('scripts/*'),
test_suite='nose.collector',
)