forked from awslabs/aws-service-catalog-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.14 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.14 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
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="aws-service-catalog-puppet",
version="0.56.2",
author="Eamonn Faherty",
author_email="aws-service-catalog-tools@amazon.com",
description="Making it easier to deploy ServiceCatalog products",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/awslabs/aws-service-catalog-puppet-framework",
packages=find_packages(),
package_data={"servicecatalog_puppet": ["*", "*/*", "*/*/*"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English",
],
entry_points={
"console_scripts": ["servicecatalog-puppet = servicecatalog_puppet.cli:cli"]
},
install_requires=[
],
)