forked from adeyosemanputra/pygoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (22 loc) · 854 Bytes
/
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
#!/usr/bin/env python3
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
# Get a list of requirements
requirements = [i.strip() for i in open("requirements.txt").readlines()]
setup(
name="pygoat",
version="1.2.0",
description="Intentionally vuln web Application Security in django",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/adeyosemanputra/pygoat",
classifiers=[
"Programming Language :: Python :: 3",
],
packages=find_packages(exclude="tests"),
python_requires=">=3.7, <4",
install_requires=requirements,
)