mirror of
https://github.com/Without-Proper-Instructions/GoatCTF
synced 2025-10-07 07:30:45 +00:00
29 lines
922 B
Python
29 lines
922 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
# Utility function to read the README file.
|
|
# Used for the long_description. It's nice, because now 1) we have a top level
|
|
# README file and 2) it's easier to type in the README file than to put a raw
|
|
# string in below ...
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
setup(
|
|
name="goatctf",
|
|
version="0.0.1",
|
|
author="WPI Cybersecurity Club",
|
|
author_email="csc@wpi.edu",
|
|
description=("A framework for running CTFs."),
|
|
license="MIT",
|
|
keywords="example documentation tutorial",
|
|
url="https://github.com/GoatCTF/GoatCTF/",
|
|
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
|
long_description=read('README.md'),
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Topic :: Utilities",
|
|
"License :: OSI Approved :: MIT License",
|
|
],
|
|
)
|