-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdev-requirements.txt
More file actions
42 lines (30 loc) · 816 Bytes
/
dev-requirements.txt
File metadata and controls
42 lines (30 loc) · 816 Bytes
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
# Checks style, syntax, and other useful errors.
flake8
# Static type checking
mypy==0.991
# Automatic code formatting
black==22.3.0
isort==5.10.1
# Running tests
pytest
pytest-sphinx
# Allows generation of coverage reports with pytest.
pytest-cov
# Needed for packaging and uploading to PyPi
twine>=1.11.0
setuptools
wheel
# Building docs
Sphinx>=4.3.0,<8.2.0
# Sphinx theme: https://sphinx-themes.org/sample-sites/furo/
furo==2022.6.4.1
# Lets Sphinx parse markdown files in addition to rst.
myst-parser>=0.15.2,<4.1.0
# Adds a copy button to code examples in the docs.
sphinx-copybutton==0.5.2
# Live rebuilding and reloading of docs for developing locally.
sphinx-autobuild==2021.3.14
# Automatically adds types to docs
sphinx-autodoc-typehints
# For parsing and comparing version numbers.
packaging