-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.36 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
"""
Setup script.
"""
from setuptools import find_packages, setup
if __name__ == "__main__":
with open("requirements.in", "r", encoding="utf-8") as requirements, open(
"README.rst", "r", encoding="utf-8"
) as readme:
setup(
name="cfn-sync",
use_scm_version=True,
description="Deploy CloudFormation stacks synchronously and watch the events",
author="Sam Jarrett",
author_email="[email protected]",
url="https://github.com/samjarrett/cfn-sync",
long_description=readme.read(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
package_data={"cfn_sync": ["py.typed"]},
entry_points={"console_scripts": ["cfn-sync = cfn_sync:main"]},
python_requires=">=3.8",
setup_requires=["setuptools >= 18.0", "setuptools_scm"],
install_requires=requirements.readlines(),
test_suite="tests",
)