ctt/setup.py

33 lines
859 B
Python
Raw Permalink Normal View History

2013-08-29 11:38:03 +00:00
#!/usr/bin/env python3
"""
script to install ctt
"""
from setuptools import setup
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",
packages=['ctt',
2013-08-29 11:38:03 +00:00
],
scripts=['scripts/ctt'],
2013-10-12 01:06:30 +00:00
data_files=[
('/usr/share/bash-completion/completions/', ['extras/completion/ctt']),
2013-10-12 01:06:30 +00:00
],
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'
])