-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPipfile
More file actions
38 lines (33 loc) · 728 Bytes
/
Pipfile
File metadata and controls
38 lines (33 loc) · 728 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
#This file is only used for github's dependabot and dependency graph generation. It is not used for development or testing. For that see the pyproject.toml file.
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
certifi = "*"
cryptography = "*"
keyring = "*"
pandas = "*"
ratelimit = "*"
requests = "*"
[doc]
numpydoc = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
sphinxcontrib-bibtex = "*"
[dev-packages]
bandit = "*"
conda-build = "*"
mypy = "*"
pylint = "*"
ruff = "*"
#tox-conda = "*" # currently, tox-conda is incompatible with tox>=4.0
tox = "*"
[tests]
pytest = "*"
pytest-cov = "*"
pytest-rerunfailures = "*"
pytest-ruff = "*"
pytest-sugar = "*"
[requires]
python_version = ">=3.10"