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,
|
2023-12-26 04:28:26 +00:00
|
|
|
python_requires='>=3.8',
|
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',
|
2022-03-02 14:05:07 +00:00
|
|
|
project_urls={
|
|
|
|
|
'Documentation': 'https://docs.builtoncement.com',
|
|
|
|
|
'Source': 'https://github.com/datafolklabs/cement',
|
|
|
|
|
},
|
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',
|
2022-08-18 01:36:15 +00:00
|
|
|
entry_points = {
|
|
|
|
|
'console_scripts' : [
|
|
|
|
|
'cement = cement.cli.main:main',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
extras_require = {
|
2022-08-18 01:46:46 +00:00
|
|
|
'alarm': [],
|
|
|
|
|
'argparse': [],
|
|
|
|
|
'colorlog': ['colorlog'],
|
|
|
|
|
'configparser': [],
|
|
|
|
|
'daemon': [],
|
|
|
|
|
'dummy': [],
|
2022-08-18 02:42:36 +00:00
|
|
|
'generate': ['pyYaml'],
|
2022-08-18 01:46:46 +00:00
|
|
|
'jinja2': ['jinja2'],
|
|
|
|
|
'json': [],
|
|
|
|
|
'logging': [],
|
|
|
|
|
'memcached': ['pylibmc'],
|
|
|
|
|
'mustache': ['pystache'],
|
|
|
|
|
'plugin': [],
|
|
|
|
|
'print': [],
|
|
|
|
|
'redis': ['redis'],
|
|
|
|
|
'scrub': [],
|
|
|
|
|
'smtp': [],
|
|
|
|
|
'tabulate': ['tabulate'],
|
|
|
|
|
'watchdog': ['watchdog'],
|
|
|
|
|
'yaml': ['pyYaml'],
|
2022-08-18 01:36:15 +00:00
|
|
|
}
|
2018-05-02 08:16:10 +00:00
|
|
|
)
|