ctt/setup.py

36 lines
886 B
Python
Raw Permalink Normal View History

2013-08-29 11:38:03 +00:00
#!/usr/bin/env python3
"""
script to install ctt
"""
import sys
from setuptools import setup
2016-11-07 08:18:08 +00:00
sys.path.insert(0, 'lib/')
import ctt
2013-08-29 11:38:03 +00:00
setup(name='ctt',
version=ctt.VERSION,
author=ctt.AUTHOR,
author_email=ctt.WWW,
url=ctt.WWW,
2013-10-12 00:56:52 +00:00
license="GNU GPLv3",
2013-08-29 11:38:03 +00:00
packages=['lib/ctt',
],
scripts=['scripts/ctt'],
2013-10-12 01:06:30 +00:00
data_files=[
('/etc/bash_completion.d/', ['extras/completion/ctt']),
],
2013-08-29 11:38:03 +00:00
zip_safe=True,
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
2013-10-12 00:56:52 +00:00
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2013-08-29 11:38:03 +00:00
'Operating System :: POSIX',
'Programming Language :: Python',
2016-11-07 08:18:08 +00:00
'Requires-Python:: 3.x'
])