Skip to content

Commit

Permalink
Merge pull request #60 from Remi-Gau/fix/name
Browse files Browse the repository at this point in the history
[FIX] fix package name
  • Loading branch information
djarecka authored Jun 21, 2024
2 parents 21f27de + 93429dd commit 218a233
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ description = "Reproschema Python library"
dynamic = ["version"]
license = {text = "Apache License, 2.0"}
maintainers = [{name = "Repronim developers", email = "[email protected]"}]
name = "reproschema-py"
name = "reproschema"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"

[project.optional-dependencies]
all = ["reproschema-py[doc]", "reproschema-py[test]"]
dev = ["reproschema-py[doc]", "reproschema-py[test]", "black", "pre-commit"]
all = ["reproschema[doc]", "reproschema[test]"]
dev = ["reproschema[doc]", "reproschema[test]", "black", "pre-commit"]
doc = [
"packaging",
"sphinx >= 2.1.2",
Expand All @@ -36,7 +36,7 @@ doc = [
"sphinxcontrib-napoleon",
"sphinxcontrib-versioning"
]
docs = ["reproschema-py[doc]"]
docs = ["reproschema[doc]"]
# For running unit and docstring tests
test = [
"pytest >= 4.4.0",
Expand All @@ -46,7 +46,7 @@ test = [
"pytest-rerunfailures",
"codecov"
]
tests = ["reproschema-py[test]"]
tests = ["reproschema[test]"]

[project.scripts]
reproschema = "reproschema.cli:main"
Expand Down

0 comments on commit 218a233

Please sign in to comment.