-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (26 loc) · 970 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
29
30
31
32
33
34
from distutils.core import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pysflow',
url='https://github.com/reening/pysflow',
version='0.1.2',
license='BSD 3-clause "New" or "Revised License"',
packages=find_packages(),
include_package_data=True,
author="Martijn Reening",
author_email="martijn@reening.net",
description="sFlow parser, written in Python",
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: System :: Networking :: Monitoring',
]
)