forked from allenai/tango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-requirements.txt
58 lines (43 loc) · 1.32 KB
/
dev-requirements.txt
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
####################################
###### Main dev dependencies #######
####################################
# Checks style, syntax, and other useful errors.
flake8
# Static type checking
mypy==0.931
types-PyYAML
types-setuptools
# Automatic code formatting
black==21.12b0
isort==5.10.1
# Running tests
pytest
pytest-sphinx
# Flaky tests
flaky
# Allows generation of coverage reports with pytest.
pytest-cov
# Allows codecov to generate coverage reports
coverage
codecov
# Needed for packaging and uploading to PyPi
twine>=1.11.0
setuptools<=59.5.0 # PyTorch used some undocumented stuff from setuptools that broke when they removed it. We can get rid of this pin when PyTorch 1.10.2 is out.
wheel
# Building docs
Sphinx==4.4.0
# Sphinx theme: https://sphinx-themes.org/sample-sites/furo/
furo==2022.1.2
# Lets Sphinx parse markdown files in addition to rst.
myst-parser==0.16.1
# Adds a copy button to code examples in the docs.
sphinx-copybutton==0.4.0
# Live rebuilding and reloading of docs for developing locally.
sphinx-autobuild==2021.3.14
# For working with version numbers.
packaging
##################################################
###### Extra dev dependencies for examples #######
##################################################
transformers # needed by: examples
torchmetrics>=0.7.0 # needed by: examples