Skip to content

Commit

Permalink
Merge pull request #277 from cta-observatory/remove_runtime_dep
Browse files Browse the repository at this point in the history
Remove setuptools_scm from main runtime deps, add extras
  • Loading branch information
maxnoe authored Jul 12, 2024
2 parents 12d82fd + d8668ed commit 82d4fd4
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies = [
'numpy >= 1.21',
'corsikaio >= 0.3.3,<0.5.0',
'zstandard > 0.11.1', # memory leak in zstandard 0.11.1
'setuptools_scm',
]

authors = [
Expand Down Expand Up @@ -41,6 +40,17 @@ classifiers = [

dynamic = ["version"]

[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"setuptools_scm",
]
all = [
"eventio[test,dev]"
]

[project.urls]
repository = "https://github.com/cta-observatory/pyeventio"
issues = "https://github.com/cta-observatory/pyeventio/issues"
Expand Down

0 comments on commit 82d4fd4

Please sign in to comment.