File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ isort = isort pydantic_ssm_settings tests
33black = 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
Original file line number Diff line number Diff line change 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+ 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+ )
You can’t perform that action at this time.
0 commit comments