Created
January 18, 2024 15:42
-
-
Save Hrissimir/62f1df162f84ccff17dd2b44bb5d6400 to your computer and use it in GitHub Desktop.
Sample Pipenv config file
This file contains hidden or 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
[[source]] | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
name = "pypi" | |
[packages] | |
click = ">=8.0.0" | |
[dev-packages] | |
packaging= ">=22.0" | |
pathspec=">=0.9.0" | |
platformdirs = ">=2" | |
mypy-extensions = ">=0.4.3" | |
black = ">=22.1.0" | |
blacken-docs = ">=1.16.0" | |
colorama = ">=0.4.6" | |
iniconfig = ">=2.0.0" | |
pluggy = ">=0.12" | |
pytest = ">=7.4.4" | |
mccabe = ">=0.7.0,<0.8.0" | |
pycodestyle=">=2.11.0" | |
pyflakes=">=3.2.0" | |
flake8=">=7.0.0" | |
flake8-builtins=">=2.2.0" | |
flake8-comprehensions=">=3.14.0" | |
isort = ">=5.13.2" | |
pylint = ">=3.0.3" | |
anyio = ">=4.2.0" | |
coverage = { extras = ["toml"], version = ">=7.4.0" } | |
pytest-cov = ">=4.1.0" | |
mypy = ">=1.8.0" | |
hatch = ">=1.9.1" | |
[scripts] | |
clean = 'python -c "import shutil;shutil.rmtree(\"dist\", True);shutil.rmtree(\"site\", True)"' | |
code-format = "hatch run code:fmt" | |
code-lint = "hatch run code:lint" | |
types-check = "hatch run types:check" | |
project-tests = "hatch run test-cov" | |
project-build = "hatch build" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment