Skip to content

Commit

Permalink
Fix incorrect fields in pyproject.toml (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 authored Oct 14, 2024
1 parent d13f461 commit 45521f8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 30 deletions.
21 changes: 6 additions & 15 deletions projects/etos_suite_runner/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build-system]
requires = ["setuptools>72", "wheel", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "etos_suite_runner"
Expand All @@ -13,6 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
requires-python = ">=3.9"
dependencies = [
"packageurl-python~=0.11",
"cryptography>=42.0.4,<43.0.0",
Expand All @@ -23,28 +25,14 @@ dependencies = [
"opentelemetry-sdk~=1.21",
]

[options]
zip_safe = false
include_package_data = true
python_requires = ">=3.4"

[options.packages.find]
where = "src"
exclude = ["tests"]

[project.urls]
Documentation = "https://etos.readthedocs.io/"
Homepage = "https://github.com/eiffel-community/etos-suite-runner"
Repository = "https://github.com/eiffel-community/etos-suite-runner"

[project.scripts]

[project.optional-dependencies]
testing = ["pytest", "pytest-cov"]

[test]
extras = true

[tool.build_sphinx]
source_dir = "docs"
build_dir = "build/sphinx"
Expand All @@ -62,4 +50,7 @@ norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]

[tool.setuptools_scm]
root = "../.."
root = "../.."

[tool.setuptools.packages]
find = { where = ["src"], exclude = ["tests"] }
1 change: 1 addition & 0 deletions projects/etos_suite_runner/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ commands =
[testenv:pydocstyle]
deps =
pydocstyle
tomli
commands =
pydocstyle .
21 changes: 6 additions & 15 deletions projects/log_listener/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build-system]
requires = ["setuptools>=72", "wheel", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "etos_log_listener"
Expand All @@ -13,34 +14,21 @@ classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
requires-python = ">=3.9"
dependencies = [
"eiffellib[rabbitmq]==2.4.1",
"fastapi==0.109.1",
"uvicorn==0.22.0",
]

[options]
zip_safe = false
include_package_data = true
python_requires = ">=3.4"

[options.packages.find]
where = "src"
exclude = ["tests"]

[project.urls]
Documentation = "https://etos.readthedocs.io/"
Homepage = "https://github.com/eiffel-community/etos-suite-runner"
Repository = "https://github.com/eiffel-community/etos-suite-runner"

[project.scripts]

[project.optional-dependencies]
testing = ["pytest", "pytest-cov"]

[test]
extras = true

[tool.build_sphinx]
source_dir = "docs"
build_dir = "build/sphinx"
Expand All @@ -58,4 +46,7 @@ norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]

[tool.setuptools_scm]
root = "../.."
root = "../.."

[tool.setuptools.packages]
find = { where = ["src"] }
1 change: 1 addition & 0 deletions projects/log_listener/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ commands =
[testenv:pydocstyle]
deps =
pydocstyle
tomli
commands =
pydocstyle .

0 comments on commit 45521f8

Please sign in to comment.