-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.17 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = [line.strip() for line in fh]
setup(
name="aws-marketplace-catalog-api-shape-library-for-python",
version="1.0.0",
author="Amazon Web Services",
license="Apache License 2.0",
url="https://github.com/awslabs/aws-marketplace-catalog-api-shapes-for-python",
description="A Python library containing strongly-typed Entity and Change type shapes for AWS Marketplace Catalog API",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
python_requires='>=3.8',
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=requirements,
extras_require={
'test': ['pytest']
},
)