-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.02 KB
/
pyproject.toml
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
49
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "azpy"
authors = [{name = "Daniel Ciborowski", email = "dciborow@microsoft.com"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/microsoft/az-python"
[project.optional-dependencies]
audio-speech = [
"torchaudio<=0.7.2",
"soundfile<=0.10.3.post1",
"pydub<=0.25.1",
"librosa<=0.7.0",
"pedalboard<=0.3.6"
]
ama = [
"azure-mgmt-deploymentmanager",
"azure-mgmt-resource",
"azure-storage-blob",
"azure-identity>=1.2.0",
"urllib3>=1.15",
"six>=1.10",
"certifi",
"python-dateutil",
"requests",
"pyyaml",
"wget",
"adal",
"cryptography>=3.3.1"
]
msft-utils = [
"azureml-core==1.33.0",
"azure-identity>=1.4.1",
"azure-keyvault==4.1.0",
"msrestazure>=0.6.4",
"azure-mgmt-resource>=12.1.0",
"python-dotenv>=0.14.0,<0.20.0"
]
[tool.flit.module]
name = "az-python"