Skip to content

Commit 1903c59

Browse files
committed
Add module as dependency for linting
1 parent aba7f3e commit 1903c59

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ isort = isort pydantic_ssm_settings tests
33
black = black -S -l 120 --target-version py38 pydantic_ssm_settings tests
44

55
.PHONY: install-linting
6-
install-linting:
6+
install-linting: install-pydantic_ssm_settings
77
pip install -r tests/requirements-linting.txt
88

99
.PHONY: install-pydantic_ssm_settings

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from setuptools import find_namespace_packages, setup
2+
3+
with open("README.md") as f:
4+
desc = f.read()
5+
6+
setup(
7+
name="pydantic-ssm-settings",
8+
description="A Pydantic configuration provider for AWS SSM Parameter STore.",
9+
long_description=desc,
10+
long_description_content_type="text/markdown",
11+
python_requires=">=3.8",
12+
classifiers=[
13+
"Intended Audience :: Developers",
14+
"Intended Audience :: Information Technology",
15+
"Intended Audience :: Science/Research",
16+
"Programming Language :: Python :: 3.8",
17+
"License :: OSI Approved :: MIT License",
18+
],
19+
keywords="Pydantic AWS SSM Parameter Store",
20+
author=u"Anthony Lukach",
21+
author_email="[email protected]",
22+
url="https://github.com/stac-utils/stac-fastapi",
23+
license="MIT",
24+
packages=find_namespace_packages(exclude=["tests"]),
25+
zip_safe=False,
26+
install_requires=[
27+
"pydantic",
28+
],
29+
)

0 commit comments

Comments
 (0)