forked from datafolklabs/cement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 892 Bytes
/
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
import sys
from setuptools import setup, find_packages
from cement.utils import version
VERSION = version.get_version()
f = open('README.md', 'r')
LONG = f.read()
f.close()
setup(name='cement',
version=VERSION,
python_requires='>=3.5',
description='Application Framework for Python',
long_description=LONG,
long_description_content_type='text/markdown',
classifiers=[],
install_requires=[],
keywords='cli framework',
author='Data Folk Labs, LLC',
author_email='[email protected]',
url='https://builtoncement.com',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'cement': ['cement/cli/templates/generate/*']},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
entry_points="""
[console_scripts]
cement = cement.cli.main:main
""",
)