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.
PurpleDome/setup.py

29 lines
876 B
Python

#!/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", encoding="utf-8") 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',
)