mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
858 B
Python
29 lines
858 B
Python
4 years ago
|
#!/usr/bin/env python3
|
||
|
""" Setup configuration. Required by Tox. """
|
||
|
|
||
|
import setuptools
|
||
|
|
||
|
|
||
|
# https://packaging.python.org/tutorials/packaging-projects/
|
||
|
# https://setuptools.readthedocs.io/en/latest/
|
||
|
|
||
|
with open("README.md", "r") as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="purpledome-thorsten-sick", # Replace with your own username
|
||
|
version="0.0.1",
|
||
|
author="Thorsten Sick",
|
||
|
author_email="thorsten.sick@avast.com",
|
||
|
description="An attack environment to simulated malware attacks on targets",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://github.com/avast/PurpleDome",
|
||
|
packages=setuptools.find_packages(),
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
python_requires='>=3.6',
|
||
|
)
|