Skip to content

Commit

Permalink
Fix incorrect fields in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
andmat900 committed Oct 11, 2024
1 parent 4b3d047 commit 4d7a4ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
18 changes: 4 additions & 14 deletions 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_starter"
Expand All @@ -14,35 +15,21 @@ classifiers = [
"License :: OSI Approved :: Apache Software License"
]
requires-python = ">=3.9"

dependencies = [
"etos_lib==4.3.1",
"opentelemetry-api~=1.21",
"opentelemetry-exporter-otlp~=1.21",
"opentelemetry-sdk~=1.21"
]

[options]
zip_safe = false
include_package_data = true

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

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

[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,3 +45,6 @@ exclude = [".tox", "build", "dist", ".eggs", "docs/conf.py"]
addopts = "--cov etos_suite_starter --cov-report term-missing --verbose"
norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]

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

0 comments on commit 4d7a4ef

Please sign in to comment.