Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to pyproject.toml, remove setup.cfg, pyscaffold #79

Merged
merged 11 commits into from
Oct 3, 2024
Prev Previous commit
Next Next commit
setup.py fix for tox
  • Loading branch information
andmat900 committed Oct 1, 2024
commit e048b682f0e66b1e5efba02857301b16c019b6ad
5 changes: 0 additions & 5 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,3 @@ exclude = [".tox", "build", "dist", ".eggs", "docs/conf.py"]
addopts = "--cov etos_api --cov-report term-missing --verbose"
norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]

[tool.setuptools_scm]
version_scheme = "setup:version_scheme"
local_scheme = "setup:local_scheme"
root = ".."
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def local_scheme(version) -> str:


if __name__ == "__main__":
setup()
setup(use_scm_version={"local_scheme": local_scheme, "version_scheme": version_scheme})
Loading