-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
18 lines (15 loc) · 737 Bytes
/
Pipfile
File metadata and controls
18 lines (15 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[[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).
azure-identity = "=1.17.1"
azure-storage-blob = "=12.22.0"
azure-mgmt-storage = "=21.2.1"
azure-keyvault-secrets = "=4.8.0"
argparse = "=1.4.0"
python-dotenv= "=1.0.1"
[dev-packages] # Here goes your package requirements for developing the application and its versions (which packages you will use when developing the application)
pylint = "*"
[requires] # Here goes your required Python version.
python_version = "3"