-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.26 KB
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
50
51
52
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "azure_dms_batch"
dynamic = ["version"]
description = "Azure Batch for Delta Modeling Section"
authors = [
{name = "Nicky Sandhu", email = "psandhu@water.ca.gov"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
'azure-batch>=11.0.0',
'azure-storage-blob>=2.1.0',
'azure-mgmt-resource>=18.0.0',
'azure-identity>=1.5.0',
'pyyaml>=5.4.0',
'tqdm>=4.0.0',
'click>=8.0.0',
]
[project.scripts]
dmsbatch = "dmsbatch.cli:main"
[project.urls]
Homepage = "https://github.com/CADWRDeltaModeling/azure_dms_batch"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
include = ["dmsbatch*"]
exclude = ["bicep*", "notebooks*", "test_configs*", "schism_scripts*", "sample_configs*", "tests*", "conda.recipe*"]
[tool.setuptools_scm]
# This section is used to configure setuptools_scm
write_to = "dmsbatch/_version.py"
version_scheme = "post-release"
local_scheme = "node-and-date"
fallback_version = "0.0.0"