forked from cisco-en-programmability/dnacentersdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
21 lines (19 loc) · 786 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[[source]] # Here goes your package sources (where you are downloading your packages from).
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages] # Here goes your package requirements for running the application and its versions (which packages you will use when running the application).
requests = ">=2.25.1"
requests-toolbelt = ">=0.9.1"
future = "*"
fastjsonschema = ">=2.14.5"
[dev-packages] # Here goes your package requirements for developing the application and its versions (which packaes you will use when developing the application)
sphinx = ">=2.1.0"
sphinx-rtd-theme = "*"
pytest = "==5.4.3"
pytest-rerunfailures = "==9.0"
flake8 = "*"
ipython = "*"
readthedocs-sphinx-search = ">=0.1.0"
setuptools_scm = "==3.3.3"
pipenv-to-requirements = "*"