initial commit

This commit is contained in:
Shane Peters
2018-11-10 13:26:49 -05:00
parent 57cbadbe8a
commit 525ecff602
21 changed files with 3049 additions and 0 deletions

11
setup.py Normal file
View File

@@ -0,0 +1,11 @@
#!/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(),
)