-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·29 lines (25 loc) · 1.06 KB
/
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
29
#!/usr/bin/env python3
from __future__ import with_statement
from setuptools import setup
from io import open
with open('README.txt') as file:
long_description = file.read()
setup(name='ipfix',
version='0.9.8',
description='IPFIX implementation for Python 3.3+',
long_description = long_description,
author='Brian Trammell',
author_email='[email protected]',
url='http://github.com/britram/python-ipfix',
packages=['ipfix'],
package_data={'ipfix': ['iana.iespec', 'rfc5103.iespec']},
scripts=['scripts/ipfix2csv', 'scripts/ipfixstat'],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.3",
"Topic :: System :: Networking"],
tests_require=['nose', 'coverage', 'doctest-ignore-unicode'],
)