-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (65 loc) · 1.66 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
71
72
73
74
75
76
77
[build-system]
requires = ["hatchling", "hatch-vcs >= 0.3.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.hatch.build.targets.wheel]
packages = ["beam"]
[project]
name = "datatractor-beam"
readme = "README.md"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = []
[project.optional-dependencies]
test = [
"pytest"
]
docs = [
"sphinx ~= 7.2",
"myst-parser ~= 2.0",
"sphinx-rtd-theme ~= 1.3",
"sphinx-autodoc-typehints ~= 1.25",
]
formats = [
"pandas",
"xarray",
"xarray-datatree",
]
dev = [
"pre-commit"
]
[project.urls]
repository = "https://github.com/datatractor/beam"
[project.scripts]
beam = "beam:run_beam"
[tool.ruff]
extend-exclude = [
"providers",
]
target-version = "py310"
lint.select = ["E", "F", "I", "W", "Q"]
lint.ignore = ["E501", "E402"]
lint.fixable = ["A", "B", "C", "D", "E", "F", "I"]
lint.unfixable = []
lint.per-file-ignores = {}
# Allow unused variables when underscore-prefixed.
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.mypy]
ignore_missing_imports = true
follow_imports = "skip"