mirror of https://github.com/dirtbags/moth.git
12 lines
277 B
Python
12 lines
277 B
Python
|
#! /usr/bin/python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='ctf',
|
||
|
version='1.0',
|
||
|
description='Capture The Flag contest',
|
||
|
author='Neale Pickett',
|
||
|
author_email='neale@lanl.gov',
|
||
|
url='http://dirtbags.net/ctf/',
|
||
|
packages=['ctf', 'tanks'])
|