cement/setup.py

35 lines
892 B
Python
Raw Normal View History

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
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,
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,
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',
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,
test_suite='nose.collector',
2010-12-10 12:33:20 +00:00
entry_points="""
[console_scripts]
cement = cement.cli.main:main
2010-12-10 12:33:20 +00:00
""",
)