generated from ACCESS-NRI/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.18 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
50
51
52
53
54
55
[project]
# Metadata
name = "hpcpy"
description = "A prototype Python client for interacting with HPC scheduling systems"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache 2.0 License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent"
]
readme = "README.md"
license = {file="LICENSE"}
# Get the version dynamically (i.e. from git)
dynamic = ["version"]
# Dependencies
requires-python = ">=3.9"
dependencies = [
"jinja2>=3.1.4",
"pandas>=2.2.2"
]
authors = [
{name = "ACCESS-NRI", email = "[email protected]"}
]
[project.urls]
source-code = "https://github.com/ACCESS-NRI/hpcpy"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"versioneer[toml]==0.29",
"jinja2>=3.1.4",
"pandas>=2.2.2"
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "hpcpy.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "hpcpy/_version.py"
versionfile_build = "hpcpy/_version.py"
tag_prefix = ""
parentdir_prefix = "hpcpy-"