-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyflow-workflow-generator"
requires-python = ">=3.8"
authors = [
{name = "European Centre for Medium-Range Weather Forecasts (ECMWF)", email = "software.support@ecmwf.int"},
]
maintainers = [
{name = "Corentin Carton de Wiart", email = "corentin.carton@ecmwf.int"},
]
description = "Create pythonic ecFlow suites"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
]
dynamic = ["version", "readme"]
dependencies = [
"jinja2",
"requests",
]
[project.urls]
repository = "https://github.com/ecmwf/pyflow"
documentation = "https://pyflow-workflow-generator.readthedocs.io"
issues = "https://github.com/ecmwf/pyflow/issues"
[project.optional-dependencies]
test = [
"pytest",
]
diagrams = [
"graphviz",
]
[tool.isort]
profile="black"
# Packaging/setuptools options
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
[tool.setuptools_scm]
write_to = "pyflow/_version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''
parentdir_prefix_version='pyflow-' # get version from GitHub-like tarballs
fallback_version='3.3.0'