-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 972 Bytes
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 972 Bytes
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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=7",
"tomli>=1.0.0; python_version < '3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "mattspy"
authors = [
{name = "Matthew R. Becker", email = "[email protected]"},
]
description = "Matt's python utils"
dynamic = ["version"]
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"cloudpickle",
"esutil",
"fitsio",
"frozendict",
"jax",
"joblib",
"loky",
"numpy",
"optax",
"scipy",
"scikit-learn",
"pandas",
]
[project.urls]
home = "https://github.com/beckermr/mattspy"
[project.scripts]
mattspy-exec-run-pickled-task = "mattspy.mattspy_exec_run:run_pickled_task"
[tool.setuptools]
include-package-data = true
zip-safe = false
packages = {find = {exclude=["tests*"]}}
[tool.setuptools_scm]
write_to = "mattspy/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.ruff.lint]
select = ["E", "F", "W"]
preview = true