Skip to content

Commit

Permalink
replacing setup.cfg with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazztok45 committed Nov 1, 2023
1 parent 8575f8d commit 1b25462
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 28 deletions.
34 changes: 34 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[build-system]
requires = [
"setuptools>=61.2",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"

[project]
name = "zbmath_rest2oai"
description = "convert from custom api to oai-pmh api"
dynamic = ["version"]

[project.optional-dependencies]
test = [
"black",
"flake8",
"isort",
"pytest",
"radon",
"flake8_polyfill",
"coverage",
"requests_mock",
"python-dateutil",
"pytest-coverage",
]

[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
zip-safe = false

[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
.
27 changes: 0 additions & 27 deletions setup.cfg

This file was deleted.

0 comments on commit 1b25462

Please sign in to comment.