mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 15:56:47 +00:00
50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
|
|
from setuptools import setup, find_packages
|
|
import sys, os
|
|
|
|
VERSION = '2.1.2'
|
|
|
|
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/
|
|
|
|
"""
|
|
|
|
|
|
setup(name='cement',
|
|
version=VERSION,
|
|
description="CLI Application Framework for Python",
|
|
long_description=LONG,
|
|
classifiers=[],
|
|
keywords='cli framework',
|
|
author='BJ Dierkes',
|
|
author_email='derks@bjdierkes.com',
|
|
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',
|
|
],
|
|
)
|