add installer
This commit is contained in:
parent
0d27fb60cb
commit
cd6af4d0fd
1 changed files with 32 additions and 0 deletions
32
setup.py
Normal file
32
setup.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
script to install ctt
|
||||
"""
|
||||
import sys
|
||||
from setuptools import setup
|
||||
sys.path.insert(0, 'lib/')
|
||||
import ctt
|
||||
|
||||
setup(name='ctt',
|
||||
version=ctt.VERSION,
|
||||
# description=pwman.description,
|
||||
author=ctt.AUTHOR,
|
||||
author_email=ctt.WWW,
|
||||
url=ctt.WWW,
|
||||
license="GNU GPL",
|
||||
packages=['lib/ctt',
|
||||
],
|
||||
scripts=['bin/ctt'],
|
||||
zip_safe=True,
|
||||
# install_requires=['pycrypto>=2.6',
|
||||
# 'colorama>=0.2.4'],
|
||||
classifiers=[
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: End Users/Desktop',
|
||||
'Intended Audience :: Developers',
|
||||
'Intended Audience :: System Administrators',
|
||||
'License :: GPL version 3',
|
||||
'Operating System :: POSIX',
|
||||
'Programming Language :: Python',
|
||||
'Requires-Python:: 3.x']
|
||||
)
|
Loading…
Reference in a new issue