-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd5477f
commit de464ff
Showing
5 changed files
with
100 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# make freeze | ||
# | ||
anyio==4.2.0 | ||
black==23.12.1 | ||
build==1.0.3 | ||
certifi==2023.11.17 | ||
click==8.1.7 | ||
coverage[toml]==7.4.0 | ||
exceptiongroup==1.2.0 | ||
flake8==6.1.0 | ||
h11==0.14.0 | ||
httpcore==1.0.2 | ||
httpx==0.26.0 | ||
idna==3.6 | ||
iniconfig==2.0.0 | ||
isort==5.13.2 | ||
mccabe==0.7.0 | ||
mypy-extensions==1.0.0 | ||
packaging==23.2 | ||
pathspec==0.12.1 | ||
pip-tools==7.3.0 | ||
platformdirs==4.1.0 | ||
pluggy==1.3.0 | ||
pycodestyle==2.11.1 | ||
pydantic==1.10.13 | ||
pyflakes==3.1.0 | ||
pyproject-hooks==1.0.0 | ||
pytest==7.4.3 | ||
pytest-cov==4.1.0 | ||
pytest-repeat==0.9.3 | ||
sniffio==1.3.0 | ||
tomli==2.0.1 | ||
typing-extensions==4.9.0 | ||
wheel==0.42.0 | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# pip | ||
# setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# make freeze | ||
# | ||
automacdoc==0.3 | ||
beautifulsoup4==4.12.2 | ||
click==8.1.7 | ||
ghp-import==2.1.0 | ||
importlib-metadata==7.0.1 | ||
jinja2==3.1.2 | ||
livereload==2.6.3 | ||
markdown==3.5.1 | ||
markupsafe==2.1.3 | ||
mergedeep==1.3.4 | ||
mkdocs==1.3.0 | ||
mkdocs-material==4.6.3 | ||
mkdocstrings==0.10.0 | ||
packaging==23.2 | ||
pydantic==1.10.13 | ||
pygments==2.17.2 | ||
pymdown-extensions==10.6 | ||
python-dateutil==2.8.2 | ||
pytkdocs==0.2.1 | ||
pyyaml==6.0.1 | ||
pyyaml-env-tag==0.1 | ||
six==1.16.0 | ||
soupsieve==2.5 | ||
tornado==6.4 | ||
typing-extensions==4.9.0 | ||
watchdog==3.0.0 | ||
zipp==3.17.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
from pathlib import Path | ||
|
||
from setuptools import find_namespace_packages, setup | ||
from pycfmodel.__version__ import __version__ | ||
|
||
readme = Path(__file__).parent / "README.md" | ||
long_description = readme.read_text() | ||
|
@@ -29,7 +28,7 @@ | |
|
||
setup( | ||
name="pycfmodel", | ||
version=__version__, | ||
version="0.21.2", | ||
description="A python model for CloudFormation scripts", | ||
author="Skyscanner Product Security", | ||
author_email="[email protected]", | ||
|