-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
22 lines (20 loc) · 800 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='sam-template-creator',
version='0.1.3',
description='Creates a SAM template for a given project',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/VanOvermeire/sam-template-creator',
author='Sam Van Overmeire',
author_email='[email protected]',
license='MIT',
install_requires=[
'ruamel.yaml >= 0.15.89'
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
entry_points={
'console_scripts': ['sam-template-creator=template_creator.command_line:main'],
},
zip_safe=False)