-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (55 loc) · 1.9 KB
/
setup.py
File metadata and controls
60 lines (55 loc) · 1.9 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
58
59
60
from setuptools import setup, find_packages
def get_version():
with open("VERSION", "r") as vf:
return vf.read().strip()
def read_requirements():
with open("requirements.txt", encoding="utf-8") as f:
return f.read().splitlines()
def read_long_description():
with open("README.md", encoding="utf-8") as f:
return f.read()
setup(
name="pentestkit",
version=get_version(),
author="Rahul Kaushal",
description="A Python library for API penetration testing using Swagger files.",
long_description=read_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/rahulkaushal04/pentestkit",
license="Apache-2.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=read_requirements(),
python_requires=">=3.8",
extras_require={
"dev": [
"pytest",
"pytest-cov",
"flake8"
]
},
entry_points={
"console_scripts": [
"pentestkit-cli=pentestkit.cli:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Security",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
keywords="API security, penetration testing, pentest, swagger, security testing",
project_urls={
"Source Code": "https://github.com/rahulkaushal04/pentestkit",
"Issue Tracker": "https://github.com/rahulkaushal04/pentestkit/issues",
},
)