-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move to pyproject.toml * Workflow & readme * ruff * Fix build GHA * pydantic version * Docs build hack. * Let's keep it with pydantic 1 for now here. * Build docs on ubuntu-latest * Revert some other changes.
- Loading branch information
1 parent
f18142b
commit 0a6c4d7
Showing
12 changed files
with
81 additions
and
2,982 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
[build-system] | ||
requires = ["setuptools >= 61.0", "setuptools-git-versioning"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
dynamic = ["version"] | ||
name = "tomato" | ||
authors = [ | ||
{name = "Peter Kraus", email = "[email protected]"}, | ||
{name = "Graham Kimbell"}, | ||
] | ||
maintainers = [ | ||
{name = "Peter Kraus", email = "[email protected]"}, | ||
] | ||
description = "au-tomation without pain" | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Operating System :: OS Independent", | ||
] | ||
requires-python = ">= 3.9" | ||
dependencies = [ | ||
"appdirs >= 1.4.0", | ||
"toml >= 0.10", | ||
"pyyaml >= 6.0", | ||
"psutil >= 5.9", | ||
"dgbowl_schemas >= 108", | ||
"pyzmq >= 25.1", | ||
"h5netcdf >= 1.3", | ||
"xarray >= 2024.2", | ||
"pydantic ~= 1.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
testing = ["pytest"] | ||
docs = [ | ||
"sphinx ~= 7.2", | ||
"sphinx-rtd-theme ~= 1.3.0", | ||
"autodoc-pydantic ~= 1.9.0", | ||
"sphinxcontrib-mermaid ~= 0.9.2", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://dgbowl.github.io/tomato/master" | ||
Issues = "https://github.com/dgbowl/tomato/issues" | ||
Repository = "https://github.com/dgbowl/tomato/" | ||
|
||
[project.scripts] | ||
tomato = "tomato:run_tomato" | ||
ketchup = "tomato:run_ketchup" | ||
tomato-job = "tomato.daemon.job:tomato_job" | ||
tomato-driver = "tomato.daemon.driver:tomato_driver" | ||
tomato-daemon = "tomato.daemon:tomato_daemon" | ||
|
||
|
||
[tool.setuptools-git-versioning] | ||
enabled = true | ||
dev_template = "{tag}.dev{ccount}" | ||
dirty_template = "{tag}.dev{ccount}" | ||
|
||
[tool.ruff] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.