-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.47 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "tracksuite"
description = "ecflow suite tracking and deploying toolkit"
authors = [
{ name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int" },
{ name = "Corentin Carton de Wiart", email = "corentin.carton@ecmwf.int" },
]
license = { text = "Apache License Version 2.0" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dynamic = ["version", "readme"]
dependencies = [
"gitpython >= 3.1.25"
]
[project.optional-dependencies]
test = ["pytest", "mocker", "pytest-mock"]
[project.urls]
"Source code" = "https://github.com/ecmwf/tracksuite"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
[project.scripts]
tracksuite-init = "tracksuite.init:main"
tracksuite-deploy = "tracksuite.deploy:main"
[tool.setuptools_scm]
write_to = "tracksuite/_version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''
parentdir_prefix_version='tracksuite-' # get version from GitHub-like tarballs
fallback_version='0.3.3'