forked from allenai/allennlp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdev-requirements.txt
48 lines (33 loc) · 960 Bytes
/
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
#### TESTING-RELATED PACKAGES ####
# Checks style, syntax, and other useful errors.
flake8
# Static type checking
mypy==0.770
# Automatic code formatting
black
# For creating git precommit hooks
pre-commit==2.3.0
# Allows generation of coverage reports with pytest.
pytest-cov
# Allows codecov to generate coverage reports
coverage
codecov
# Optional dependencies, which we install for testing purposes.
matplotlib>=2.2.3
# Required to run sanic tests
aiohttp
# Required for automatic mixed precision (AMP) training
git+https://github.com/NVIDIA/apex.git@master
#### DOC-RELATED PACKAGES ####
# YAML manipulation
ruamel.yaml
# Generating markdown files from Python modules.
git+https://github.com/NiklasRosenstein/pydoc-markdown.git@b469839ceb598df3d7e7126b81bff88dfd1343e3
markdown-include==0.5.1
# Package for the material theme for mkdocs
mkdocs-material==5.1.5
#### PACKAGE-UPLOAD PACKAGES ####
# Pypi uploads
twine>=1.11.0
setuptools
wheel