forked from datafolklabs/cement
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
81 lines (58 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from setuptools import setup, find_packages
import sys, os
VERSION = '1.9.9'
LONG = """
Cement is an advanced CLI Application Framework for Python. This package
provides the core framework required to run an application built on top of
Cement. Note that this is only part of 'cement' as a whole. The entire
source is available from:
http://builtoncement.org/cement/1.9/download/
The Cement CLI Application Framework is Open Source and is distributed under
The BSD "three-clause" License.
MORE INFORMATION:
All documentation is available from the official website:
http://builtoncement.org
GETTING STARTED:
Stable versions can be installed via the cheeze shop:
::
$ easy_install cement
Development versions can be checked out of Git:
::
$ git clone git://github.com/derks/cement.git
$ git checkout --track -b portland origin/portland
$ cd cement/src/cement/
$ python setup.py install
For development, and actually building applications on Cement, please see the
cement.devtools package.
"""
setup(name='cement',
version=VERSION,
description="CLI Application Framework for Python",
long_description=LONG,
classifiers=[],
keywords='cli framework',
author='BJ Dierkes',
author_email='[email protected]',
url='http://builtoncement.org',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
### Required to build documentation
# "Sphinx >= 1.0",
### Required for testing
# "nose",
# "coverage",
],
setup_requires=[
],
entry_points="""
""",
namespace_packages=[
'cement',
'cement.ext',
'cement.lib',
],
)