-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 915 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from distutils.core import setup
import pydoc
import clictk
long_desc = pydoc.getdoc(clictk)
setup(
name='pyclictk',
version=clictk.__version__,
packages=['clictk'],
provides=['clictk'],
url='http://github.com/CognitionGuidedSurgery/pyclictk',
license='LGPLv3',
author='Alexander Weigl',
author_email='[email protected]',
description='Python Support Common Toolkit\'s (CTK) Command Line Interface (CLI)',
long_description=long_desc,
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 5 - Production/Stable",
"Environment :: Console"
]
)