-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (44 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·47 lines (44 loc) · 1.43 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
from setuptools import setup, find_packages
import os
# Read version
version = {}
with open(os.path.join("tamper_framework", "__version__.py")) as f:
exec(f.read(), version)
# Read README
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="sqlmap-tamper-framework",
version=version["__version__"],
author=version["__author__"],
author_email="support@rothackers.com",
description=version["__description__"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/noobforanonymous/sqlmap-tamper-collection",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.7",
install_requires=[
# No external dependencies - pure Python
],
extras_require={
"dev": [
"pytest>=7.0.0",
"black>=22.0.0",
],
},
include_package_data=True,
zip_safe=False,
)