-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1011 Bytes
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
[project]
name = "coldfront-initializer"
version = "0.0.5"
description = "Load data into ColdFront from yaml files"
readme = "README.md"
authors = [
{ name = "Andrew E. Bruno", email = "aebruno2@buffalo.edu" }
]
license = "Apache-2.0"
license-files = ["LICENSES/*.txt"]
keywords = ["high-performance-computing", "resource-allocation"]
classifiers = [
"Framework :: Django",
"Environment :: Plugins",
'Topic :: Scientific/Engineering',
'Topic :: System :: Systems Administration',
]
requires-python = ">=3.12"
dependencies = [
"coldfront",
"jinja2>=3.1.6",
"ruamel-yaml>=0.19.1",
]
[build-system]
requires = ["uv_build>=0.11.2,<0.12"]
build-backend = "uv_build"
[tool.uv.sources]
coldfront = { git = "https://github.com/coldfront/coldfront", branch = "feature/v2-poc" }
[dependency-groups]
dev = [
"reuse>=6.2.0",
"ruff>=0.15.7",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true