mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 06:46:15 +00:00
9a3b3ce706
* Add .pre-commit-config.yaml to the project and exclude tests (for now). This does not include the MyPy linting that pip does but does include everything else.
20 lines
573 B
TOML
20 lines
573 B
TOML
[dev-packages]
|
|
pipenv = {path = ".", editable = true, extras = ["tests", "dev"]}
|
|
sphinx-click = "<3"
|
|
click = "*"
|
|
pytest_pypi = {path = "./tests/pytest-pypi", editable = true}
|
|
stdeb = {version="*", markers="sys_platform == 'linux'"}
|
|
dataclasses = {version="*", markers="python_version < '3.7'"}
|
|
importlib-resources = {version = "*", markers = "python_version < '3.7'"}
|
|
sphinxcontrib-spelling = "<4.3.0"
|
|
pre-commit = "*"
|
|
atomicwrites = {version = "*", markers="sys_platform == 'win32'"}
|
|
|
|
[packages]
|
|
|
|
[scripts]
|
|
tests = "bash ./run-tests.sh"
|
|
|
|
[pipenv]
|
|
allow_prereleases = true
|