-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.12 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.12 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
install_requires = [line.strip() for line in f if line.strip() and not line.startswith("#")]
setup(
name = "sitm",
version = "0.1.0",
description = "Security-in-the-Middle (SiTM): Intercepting Vulnerabilities in Transit to Remote.",
long_description = long_description,
long_description_content_type = "text/markdown",
author = "Chidera Biringa",
author_email = "biringachidera@gmail.com",
url = "https://github.com/biringaChi/sitm",
license = "MPL-2.0",
packages = find_packages(),
python_requires = ">=3.8",
install_requires = install_requires,
entry_points = {
"console_scripts": [
"sitm = sitm_core.cli.sitm:main",
"sitm-scan = sitm_core.cli.scan:sitm",
]
},
include_package_data = True,
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)