12 lines
263 B
Python
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(),
|
|
)
|