forked from qwigo/sammy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.1 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.1 KB
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 pathlib
from setuptools import setup, find_packages
with pathlib.Path('requirements.txt').open() as requirements_txt:
install_requires = [
line.strip()
for line in requirements_txt
if line.strip() and not line.strip().startswith('#')
]
version = '0.4.2'
setup(
name='sammy',
version=version,
description="Python library for generating AWS SAM "
"(Serverless Application Model) templates with validation.",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only"
],
keywords='serverless, cloudformation, sam',
author='Brian Jinwright',
author_email='opensource@ipoots.com',
maintainer='Brian Jinwright',
packages=find_packages(),
url='https://github.com/capless/sammy',
license='GNU General Public License v3.0',
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
)