-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): Add
build
dependency, upload package artifacts as build as…
…sets
- Loading branch information
Showing
3 changed files
with
53 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,39 +9,39 @@ version = "0.1.0" | |
readme = "README.md" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"docker", | ||
"kubernetes", | ||
"ray[train,default]==2.34.0", | ||
"tensorflow", | ||
"docker", | ||
"kubernetes", | ||
"ray[train,default]==2.34.0", | ||
"tensorflow", | ||
] | ||
authors = [ | ||
{ name = "appliedAI Institute for Europe", email = "[email protected]" }, | ||
{ name = "appliedAI Institute for Europe", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Nicholas Junge", email = "[email protected]" }, | ||
{ name = "Max Mynter", email = "[email protected]" }, | ||
{ name = "Adrian Rumpold", email = "[email protected]" }, | ||
{ name = "Nicholas Junge", email = "[email protected]" }, | ||
{ name = "Max Mynter", email = "[email protected]" }, | ||
{ name = "Adrian Rumpold", email = "[email protected]" }, | ||
] | ||
|
||
[project.scripts] | ||
jobs_execute = "jobs.execute:execute" | ||
jobby = "jobs.cli:main" | ||
|
||
[project.optional-dependencies] | ||
dev = ["ruff", "pytest", "pre-commit"] | ||
dev = ["build", "ruff", "pytest", "pre-commit"] | ||
docs = [ | ||
"mkdocs", | ||
"mkdocs-callouts", | ||
"mkdocs-gen-files", | ||
"mkdocs-literate-nav", | ||
"mkdocs-section-index", | ||
"mkdocs-material", | ||
"mkdocstrings[python]", | ||
"mkdocs-include-dir-to-nav", | ||
"black", # formatting of signatures in docs | ||
"mike", | ||
"appnope", # required only on Darwin, but need to include in lockfile | ||
"docstring-parser", | ||
"mkdocs", | ||
"mkdocs-callouts", | ||
"mkdocs-gen-files", | ||
"mkdocs-literate-nav", | ||
"mkdocs-section-index", | ||
"mkdocs-material", | ||
"mkdocstrings[python]", | ||
"mkdocs-include-dir-to-nav", | ||
"black", # formatting of signatures in docs | ||
"mike", | ||
"appnope", # required only on Darwin, but need to include in lockfile | ||
"docstring-parser", | ||
] | ||
|
||
[tool.setuptools.package-data] | ||
|
@@ -57,10 +57,10 @@ src = ["src"] | |
[tool.ruff.lint] | ||
select = ["E", "F", "I", "W"] | ||
ignore = [ | ||
# Line too long | ||
"E501", | ||
# Allow capitalized variable names | ||
"F841", | ||
# Line too long | ||
"E501", | ||
# Allow capitalized variable names | ||
"F841", | ||
] | ||
|
||
[tool.mypy] | ||
|
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