-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 1.61 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
[build-system]
requires = ["setuptools>=64.0.0", "setuptools-scm"]
#build-backend = "pbr.build"
build-backend = "setuptools.build_meta"
[project]
name = "ACCESS-MOPPeR"
authors = [
{name = "Paola Petrelli", email = "[email protected]"},
{name = "Sam Green", email = "[email protected]"},
]
description = "ACCESS Model Output Post-Processor, maps raw model output to CMIP-style defined variables and produce post-processed output using CMOR3"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["ACCESS", "post-processing"]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[tool.setuptools-git-versioning]
enabled = true
[project.scripts]
mop = "mopper.mopper:mop_catch"
mopdb = "mopdb.mopdb:mopdb_catch"
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
optional-dependencies.test = { file = ["test-requirements.txt"] }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
mopdata = ["*.json", "*.yaml", "*.db", "*.csv",
"update_db.py.txt", "cmor_tables/*.json"]
#"mopdata.cmor_tables" = ["cmor_tables/*.json"]
# ... other project metadata fields as listed in:
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/