2011-08-01 08:48:06 +00:00
|
|
|
|
2013-04-09 21:35:55 +00:00
|
|
|
import sys
|
2010-12-10 12:33:20 +00:00
|
|
|
from setuptools import setup, find_packages
|
2012-10-09 03:54:07 +00:00
|
|
|
from cement.utils import version
|
|
|
|
|
|
|
|
|
|
VERSION = version.get_version()
|
2010-12-10 12:33:20 +00:00
|
|
|
|
2018-05-02 08:16:10 +00:00
|
|
|
f = open('README.md', 'r')
|
|
|
|
|
LONG = f.read()
|
|
|
|
|
f.close()
|
2010-12-10 12:33:20 +00:00
|
|
|
|
2012-06-28 23:55:51 +00:00
|
|
|
setup(name='cement',
|
2010-12-10 12:33:20 +00:00
|
|
|
version=VERSION,
|
2018-10-31 19:43:58 +00:00
|
|
|
python_requires='>=3.5',
|
2018-11-06 17:24:56 +00:00
|
|
|
description='Application Framework for Python',
|
2010-12-10 12:33:20 +00:00
|
|
|
long_description=LONG,
|
2018-05-02 08:16:10 +00:00
|
|
|
long_description_content_type='text/markdown',
|
2014-01-23 00:09:03 +00:00
|
|
|
classifiers=[],
|
2018-07-27 20:50:35 +00:00
|
|
|
install_requires=[],
|
2010-12-10 12:33:20 +00:00
|
|
|
keywords='cli framework',
|
2013-09-04 23:28:31 +00:00
|
|
|
author='Data Folk Labs, LLC',
|
2018-05-02 08:16:10 +00:00
|
|
|
author_email='derks@datafolklabs.com',
|
2018-10-02 23:39:27 +00:00
|
|
|
url='https://builtoncement.com',
|
2011-11-07 23:29:43 +00:00
|
|
|
license='BSD',
|
2013-04-09 21:03:30 +00:00
|
|
|
packages=find_packages(exclude=['ez_setup', 'tests*']),
|
2018-07-27 20:50:35 +00:00
|
|
|
package_data={'cement': ['cement/cli/templates/generate/*']},
|
2010-12-10 12:33:20 +00:00
|
|
|
include_package_data=True,
|
|
|
|
|
zip_safe=False,
|
2011-05-18 07:50:25 +00:00
|
|
|
test_suite='nose.collector',
|
2010-12-10 12:33:20 +00:00
|
|
|
entry_points="""
|
2018-05-02 08:16:10 +00:00
|
|
|
[console_scripts]
|
|
|
|
|
cement = cement.cli.main:main
|
2010-12-10 12:33:20 +00:00
|
|
|
""",
|
2018-05-02 08:16:10 +00:00
|
|
|
)
|