-
Notifications
You must be signed in to change notification settings - Fork 582
/
Pipfile
62 lines (60 loc) · 1.96 KB
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
#
# Amazon AWS Universal CLI environment (https://aws.amazon.com/cli/)
# Release notes: https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst
# Repo: https://github.com/aws/aws-cli
awscli = "==1.32.8"
#
# PyTest testing framework (https://docs.pytest.org/en/7.4.x/)
pytest = "==7.4.2"
#
# exceptiongroup: Backport of PEP-654 Exception groups to Python <3.11
exceptiongroup = {version = "*", markers = "python_version < '3.11'"}
#
# Black: A Python source formatter
black = "==23.10.1"
#
# Docutils Stubs
docutils-stubs = "==0.0.22"
[packages]
#
# Sphinx (https://www.sphinx-doc.org)
# Release notes: https://www.sphinx-doc.org/en/master/changes.html
# Repo: https://github.com/sphinx-doc/sphinx
sphinx = "==7.2.6"
#
# Furo Theme (https://github.com/pradyunsg/furo)
furo = "==2023.9.10"
#
# MyST Parser (https://myst-parser.readthedocs.io/en/latest/)
# Release notes: https://myst-parser.readthedocs.io/en/latest/develop/_changelog.html
# Repo: https://github.com/executablebooks/myst-parser
myst-parser = "==2.0.0"
#
# Sphinx Autobuild (https://github.com/executablebooks/sphinx-autobuild)
# Repo: https://github.com/executablebooks/sphinx-autobuild
sphinx-autobuild = "==2021.3.14"
#
# Tabbed views for Sphinx (https://sphinx-tabs.readthedocs.io/)
# Repo: https://github.com/executablebooks/sphinx-tabs
#sphinx-tabs = "==3.4.0"
#
# Setuptools; used by sphinx-tabs
# Repo: https://github.com/pypa/setuptools
setuptools = "==68.2.2"
#
# Add a "copy" button to code blocks in Sphinx (https://sphinx-copybutton.readthedocs.io/en/latest/)
# Repo: https://github.com/executablebooks/sphinx-copybutton
sphinx-copybutton = "==0.5.2"
#
# Python importlib metadata library; used by Sphinx
# Repo: https://github.com/python/importlib_metadata
importlib-metadata = "==4.12.0"
#
# Tabbed views for Sphinx (https://github.com/pradyunsg/sphinx-inline-tabs)
sphinx-inline-tabs = "==2023.04.21"
sphinxcontrib-mermaid = "*"