-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (40 loc) · 1.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
long_description = readme_file.read()
requirements = ['Click>=7', 'boto3>=1.9', 'PyYAML>=5']
setup(
author="Nicolas Bases",
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="A simple way to create AWS Lambda projects in Python heavily inspired and copied from https://github.com/nficano/python-lambda",
entry_points={
'console_scripts': [
'lambada=lambada.cli:cli',
],
},
install_requires=requirements,
license="MIT license",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
keywords='lambada',
name='lambada-again',
packages=find_packages(include=['lambada']),
test_suite='tests',
url='https://github.com/rustico/lambada',
version='0.2.6',
python_requires='>=3.6',
)