Skip to content

Commit

Permalink
Merge pull request #111 from ArgonneCPAC/dynamic_dependency
Browse files Browse the repository at this point in the history
infer dependencies from requirements.txt from within pyprojec.toml
  • Loading branch information
aphearin authored Oct 30, 2023
2 parents 37cdd43 + 925fa2a commit ea2d525
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ license = {file = "LICENSE.rst"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = ["numpy", "jax"]
dynamic = ["version"]
dynamic = ["version", "dependencies"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}


[tool.black]
line-length = 88
Expand Down

0 comments on commit ea2d525

Please sign in to comment.