goatctf/setup.py
2014-10-31 19:15:44 -04:00

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",
],
)