-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.2 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
install_requires = [
'boto3>=1.9.8,<2.0.0',
'botocore>=1.12.5,<2.0.0',
'chalice>=1.6.0,<2.0.0',
'click>=6.6,<7.0',
'pip>=9,<11',
'PyYAML>=3.13,<4.0',
]
setup(
name='zerv',
version='0.1.0',
description="CLI Tool",
long_description=README,
author="Henoc Díaz",
author_email='self@henocdz.com',
url='https://github.com/henocdz/zerv',
packages=find_packages(exclude=['tests']),
install_requires=install_requires,
license="GNU General Public License v3 (GPLv3)",
package_data={'chalice': ['*.json']},
include_package_data=True,
zip_safe=False,
keywords='zerv',
entry_points={
'console_scripts': [
'zerv = zerv.cli.handler:main',
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Build Tools',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
)