-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
39 lines (34 loc) · 1.16 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
[build-system]
requires = [
"setuptools_scm[toml]",
"wheel",
"numpy"
]
build-backend = "setuptools.build_meta"
[project]
name="carolina"
requires-python = ">=3.8"
description = "Python wrapper around Dakota"
authors = [
{ name = "Equinor ASA", email = "[email protected]" },
{ name = "National Renewable Energy Laboratory (NREL)" },
]
readme = "README.md"
license = {text = "Apache 2.0"}
dynamic = ["version", "dependencies"]
classifiers = ['Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[tool.setuptools_scm]
write_to = "src/_version.py"
[metadata]
homepage = "https://github.com/equinor/carolina"
repository = "https://github.com/equinor/carolina"