mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
761a03d088
* Begin reviewing the basics docs. * Check in delta * More doc revisions. * Split apart basics docs. * Refactor based on building docs * add the files back as markdown. * more conversions to markdown. * more conversions to markdown. * fix markdown formatting. * convert index to markdown. * More docs review * More markdown and doc revisions. * Fix docs. * Update doc build requirements. * fix lint * Fix build with update/upgrade command. * remove useless quickstart and update the commands section. * Fix lint * change ordering of table of contents. * fix changelog duplicate headings. * Start splitting advanced topics. * minor nits * Move some sections from advanced to shell. * remove this section as its stale and kind of off topic. * move scripts out into its own section. * Wrap up revisions1 * fix lint * address PR feedback and other nits. * fix lint * Try improving ordering of table of contents, fix issue with indexes.md file location. * fix lint * PR feedback.
38 lines
1.0 KiB
TOML
38 lines
1.0 KiB
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[dev-packages]
|
|
pipenv = {path = ".", editable = true, extras = ["tests", "dev"]}
|
|
sphinx = "==4.*"
|
|
sphinx-click = "==4.*"
|
|
sphinxcontrib-spelling = "==7.*"
|
|
click = "==8.0.3"
|
|
pypiserver = "==1.*"
|
|
stdeb = {version="*", markers="sys_platform == 'linux'"}
|
|
zipp = {version = "==3.6.0", markers = "python_version < '3.10'"}
|
|
pre-commit = "==2.*"
|
|
atomicwrites = {version = "*", markers="sys_platform == 'win32'"}
|
|
pytest-cov = "==3.*"
|
|
typing-extensions = "==4.*"
|
|
waitress = {version = "*", markers="sys_platform == 'win32'"}
|
|
gunicorn = {version = "*", markers="sys_platform == 'linux'"}
|
|
parse = "*"
|
|
importlib-metadata = {version = "*", markers="python_version < '3.8'"}
|
|
colorama= {version = "*", markers="sys_platform == 'win32'"}
|
|
myst-parser = {extras = ["linkify"], version = "*"}
|
|
invoke = "==2.0.0"
|
|
exceptiongroup = "==1.1.0"
|
|
tomli = "*"
|
|
|
|
[packages]
|
|
pytz = "*"
|
|
|
|
[scripts]
|
|
tests = "bash ./run-tests.sh"
|
|
test = "pytest -vvs"
|
|
|
|
[pipenv]
|
|
allow_prereleases = true
|