forked from datafolklabs/cement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (46 loc) · 1.39 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
import sys
from setuptools import setup, find_packages
from cement.utils import version
VERSION = version.get_version()
LONG = """
Cement is an advanced CLI Application Framework for Python. Its goal is to
introduce a standard, and feature-full platform for both simple and complex
command line applications as well as support rapid development needs without
sacrificing quality.
More Information please visit the official site at:
* http://builtoncement.com/
"""
DEPS = [
### Required to build documentation
# "Sphinx >= 1.0",
### Required for testing
# "nose",
# "coverage",
]
# Python < 2.7/3.2 require argparse
if (sys.version_info[0] < 3 and sys.version_info < (2, 7)) or \
(sys.version_info[0] >= 3 and sys.version_info < (3, 2)):
DEPS.append('argparse')
setup(name='cement',
version=VERSION,
description="CLI Application Framework for Python",
long_description=LONG,
classifiers=[],
keywords='cli framework',
author='Data Folk Labs, LLC',
author_email='[email protected]',
url='http://builtoncement.org',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'tests*']),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=DEPS,
setup_requires=[],
entry_points="""
""",
namespace_packages=[
'cement',
'cement.ext',
],
)