generated from Exabyte-io/template-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (90 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
99 lines (90 loc) · 1.78 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[project]
name = "mat3ra-wode"
dynamic = ["version"]
description = "WOrkflow DEfinitions"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
authors = [
{ name = "Exabyte Inc.", email = "info@mat3ra.com" }
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 3 - Alpha",
"Topic :: Software Development",
]
dependencies = [
"numpy",
"mat3ra-code",
"mat3ra-utils",
"mat3ra-esse",
"mat3ra-mode",
"mat3ra-ade",
"mat3ra-standata"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"black",
"ruff",
"isort",
"mypy",
"pip-tools",
]
tests = [
"coverage[toml]>=5.3",
"pytest",
"pytest-cov",
]
all = [
"mat3ra-wode[tests]",
"mat3ra-wode[dev]",
]
[build-system]
requires = [
"setuptools>=42",
"setuptools-scm[toml]>=3.4"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
git_describe_command = "git describe --tags --long"
[tool.setuptools.packages.find]
where = ["src/py"]
[tool.black]
line-length = 120
target-version = ['py310']
extend-exclude = '''
(
tests\/fixtures*,
examples\/.*\/.*\.py
| other\/.*\/.*\.(py|ipynb)
| dist\/.*
)
'''
[tool.ruff]
extend-exclude = [
"src/js",
"tests/fixtures",
"dist"
]
line-length = 120
target-version = "py310"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
extend_skip_glob = ["dist/*"]
[tool.pytest.ini_options]
pythonpath = [
"src/py",
]
testpaths = [
"tests/py"
]