-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (54 loc) · 1.89 KB
/
setup.py
File metadata and controls
57 lines (54 loc) · 1.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup
import scitags
NAME = 'scitags'
VERSION = scitags.VERSION
DESCRIPTION = "Flow and Packet Marking Service"
LONG_DESCRIPTION = """
Flow and Packet Marking Service (flowd) implementation based on the SciTags specification (www.scitags.org).
"""
AUTHOR = scitags.AUTHOR
AUTHOR_EMAIL = scitags.AUTHOR_EMAIL
LICENSE = "ASL 2.0"
PLATFORMS = "Any"
URL = "https://github.com/scitags/flowd"
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
platforms=PLATFORMS,
url=URL,
download_url='https://github.com/scitags/flowd/archive/refs/tags/{}.tar.gz'.format(VERSION),
classifiers=CLASSIFIERS,
python_requires=">=3.5",
keywords='operations python network flow packet marking',
packages=['scitags',
'scitags.backends',
'scitags.plugins',
'scitags.stun',
'scitags.netlink'],
install_requires=['psutil',
'requests',
'prometheus_client'],
extras_requires={'ebpf': ['bcc'],
'netlink': ['pyroute2']},
data_files=[
('/usr/sbin', ['sbin/flowd']),
('/etc/flowd', ['etc/flowd.cfg']),
('/usr/lib/systemd/system', ['etc/flowd.service']),
])