-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
36 lines (34 loc) · 1.36 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
30
31
32
33
34
35
36
import setuptools
import picosnitch
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="picosnitch",
version=picosnitch.VERSION,
python_requires=">=3.8",
description="Monitor network traffic per executable using BPF",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://elesiuta.github.io/picosnitch",
license="GPLv3",
py_modules=["picosnitch"],
entry_points={"console_scripts": ["picosnitch = picosnitch:start_picosnitch"]},
install_requires=["psutil"],
extras_require={
"enable_dash": ["dash", "pandas", "plotly"],
"enable_geoip": ["geoip2"],
"enable_notifications": ["dbus-python"],
"enable_sql": ["psycopg", "pymysql"],
"enable_themes": ["dash-bootstrap-components", "dash-bootstrap-templates"],
"enable_virustotal": ["requests"],
"full": ["dash", "pandas", "plotly", "geoip2", "psycopg", "pymysql", "dash-bootstrap-components", "dash-bootstrap-templates", "requests"]
},
classifiers=[
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: System :: Networking :: Monitoring",
"Topic :: System :: Monitoring",
"Topic :: Security"
],
)