cctool

A tool for managing contacts and calendars.
git clone https://git.ce9e.org/cctool.git

commit
dc5a2d06c3f10ac98ab65377ba137932de652044
parent
feb01dbadfb8ab833e10dac7ba36021cceb64775
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-04-11 07:42
add setup.py

Diffstat

A setup.py 25 +++++++++++++++++++++++++

1 files changed, 25 insertions, 0 deletions


diff --git a/setup.py b/setup.py

@@ -0,0 +1,25 @@
   -1     1 #!/usr/bin/env python
   -1     2 
   -1     3 from setuptools import setup
   -1     4 
   -1     5 setup(
   -1     6     name='cctool',
   -1     7     version='0.1.0',
   -1     8     description="A tool for managing contacts and calendars.",
   -1     9     author='Tobias Bengfort',
   -1    10     author_email='tobias.bengfort@gmx.net',
   -1    11     platforms='any',
   -1    12     py_modules=['cctool'],
   -1    13     license='GPLv3+',
   -1    14     entry_points={'console_scripts': 'cctool=cctool:main'},
   -1    15     classifiers=[
   -1    16         'Development Status :: 3 - Alpha',
   -1    17         'Environment :: Console',
   -1    18         'Intended Audience :: Developers',
   -1    19         'Natural Language :: English',
   -1    20         'Operating System :: OS Independent',
   -1    21         'Programming Language :: Python :: 2.7',
   -1    22         'Programming Language :: Python :: Implementation :: PyPy',
   -1    23         'License :: OSI Approved :: GNU General Public License v3 or later '
   -1    24             '(GPLv3+)',
   -1    25     ])