-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (44 loc) · 1.46 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# setup.py
import codecs
with codecs.open('build.py', 'r') as build_file:
build_source = build_file.read()
source = dict()
exec(build_source, source)
setup = source['setup']
def main() -> None:
"""Runs the function to distribute the package."""
setup(
package="sniffingio",
exclude=[
"__pycache__",
"*.pyc"
],
include=[],
requirements="requirements.txt",
dev_requirements="requirements-dev.txt",
name='sniffing-io',
version='0.3.2',
description=(
"A simple package for packet sniffing, "
"with static/dynamic filtering options, "
"real-time reaction, I/O operations and more."
),
license='MIT',
author="Shahaf Frank-Shapir",
author_email='shahaffrs@gmail.com',
url='https://github.com/Shahaf-F-S/sniffing-io',
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent"
]
)
if __name__ == "__main__":
main()