forked from capless/sammy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.11 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
import pathlib
import pkg_resources
from setuptools import setup, find_packages
with pathlib.Path('requirements.txt').open() as requirements_txt:
install_requires = [
str(requirement)
for requirement
in pkg_resources.parse_requirements(requirements_txt)
]
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='[email protected]',
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,
)