-
Notifications
You must be signed in to change notification settings - Fork 26
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
dd50d15
commit 2839a16
Showing
6 changed files
with
89 additions
and
81 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
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 was deleted.
Oops, something went wrong.
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,85 @@ | ||
# build-system | ||
# - ref: https://peps.python.org/pep-0517/ | ||
# | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
|
||
# project | ||
# - ref 1: https://peps.python.org/pep-0621/ | ||
# - ref 2: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html | ||
# | ||
[project] | ||
name = "chartpress" | ||
version = "2.3.1.dev" | ||
authors = [ | ||
{name = "Jupyter Development Team", email = "[email protected]"}, | ||
] | ||
description = "ChartPress: render and publish helm charts and images" | ||
keywords = ["helm", "kubernetes"] | ||
readme = {file = "README.md"} | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"ruamel.yaml>=0.15.44", | ||
# Bug in 5.0.0: https://github.com/docker/docker-py/pull/2844 | ||
"docker>=3.2.0,!=5.0.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"gitpython", | ||
"pytest", | ||
"pytest-cov", | ||
"tbump", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://github.com/jupyterhub/chartpress#readme" | ||
Source = "https://github.com/jupyterhub/chartpress" | ||
Issues = "https://github.com/jupyterhub/chartpress/issues" | ||
|
||
[project.scripts] | ||
chartpress = "chartpress:main" | ||
|
||
|
||
# setuptools | ||
# - ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#setuptools-specific-configuration | ||
# | ||
[tool.setuptools] | ||
py-modules = ["chartpress"] | ||
|
||
|
||
# black is used for autoformatting Python code | ||
# | ||
# ref: https://black.readthedocs.io/en/stable/ | ||
# | ||
[tool.black] | ||
skip-string-normalization = false | ||
|
||
|
||
# isort is used for autoformatting Python code | ||
# | ||
# ref: https://pycqa.github.io/isort/ | ||
# | ||
[tool.isort] | ||
profile = "black" | ||
|
||
|
||
# pytest is used for running Python based tests | ||
# | ||
# ref: https://docs.pytest.org/en/stable/ | ||
# | ||
[tool.pytest.ini_options] | ||
addopts = "--verbose --color=yes --durations=10 --cov=chartpress" | ||
testpaths = ["tests"] |