-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
39 lines (35 loc) · 1.18 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
description = 'User-friendly deploy and management tool for AWS Lambda function.'
long_description = description
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup_options = dict(
name='lamvery',
version='0.18.2',
description=description,
long_description=long_description,
author='Masashi Terui',
author_email='[email protected]',
url='https://github.com/marcy-terui/lamvery',
packages=find_packages(exclude=['tests*', 'lambda_function', 'register']),
package_data={
'lamvery': ['dists/lamvery.js']
},
install_requires=open('requirements.txt').read().splitlines(),
entry_points={
'console_scripts': 'lamvery = lamvery.cli:main'
},
license="MIT License",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
keywords='aws lambda',
)
setup(**setup_options)