-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathPipfile
More file actions
22 lines (19 loc) · 789 Bytes
/
Pipfile
File metadata and controls
22 lines (19 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[[source]] # Here goes your package sources (where you are downloading your packages from).
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[requires]
python_version = "3.12"
[packages] # Here goes your package requirements for running the application and its versions (which packages you will use when running the application).
requests = ">=2.32.0, <3.0.0"
requests-toolbelt = ">=1.0.0"
fastjsonschema = ">=2.16.2"
[dev-packages] # Here goes your package requirements for developing the application and its versions (which packaes you will use when developing the application)
sphinx = ">=5.3.0"
sphinx-rtd-theme = ">=1.3.0"
pytest = "*"
pytest-rerunfailures = ">=10.3"
flake8 = "*"
ipython = "*"
readthedocs-sphinx-search = ">=0.3.2"
setuptools_scm = ">=6.0.0"