Files
threatline/setup.py
Shane Peters 525ecff602 initial commit
2018-11-10 13:29:42 -05:00

12 lines
263 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(
name='ThreatLine',
version='0.1',
packages=['threatline'],
license='Creative Commons Attribution-Noncommercial-Share Alike license',
long_description=open('README.txt').read(),
)