-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (32 loc) · 1.19 KB
/
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
29
30
31
32
33
#!/usr/bin/env python
# -*- encoding=utf8 -*-
#
# Copyright © 2011 Hsin Yi Chen
from distutils.core import setup
setup(
name = 'ucltip',
version = open('VERSION.txt').read().strip(),
description = 'A library to help making command line tool Python binding faster',
long_description="""
This library makes you to use command line tool in Python by OO way.
The concept is to transform 1) command as a instance, 2) options
of command as arguments and keyword arguments of function or
instance method when method be used as a sub command of a command.
""",
author = 'Hsin-Yi Chen 陳信屹 (hychen)',
author_email = '[email protected]',
url='http://github.com/hychen/ucltip',
license = 'BSD-2-clause License',
packages=['ucltip'],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)