-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 reference and second requirements option
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# ref: https://setuptools.pypa.io/en/stable/userguide/pyproject_config.html | ||
[project] | ||
authors = [ | ||
{ name = "Jakob Nybo Nissen", email = "[email protected]" }, | ||
|
@@ -17,8 +18,13 @@ classifiers = [ | |
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
# # add dependencies here: | ||
# # add dependencies here: (use one of the two) | ||
# dependencies = ["numpy", "pandas", "scipy", "matplotlib", "seaborn"] | ||
# use requirements.txt instead of pyproject.toml for dependencies | ||
# https://stackoverflow.com/a/73600610/9684872 | ||
# [tool.setuptools.dynamic] | ||
# dependencies = {file = ["requirements.txt"]} | ||
|
||
|
||
[project.urls] | ||
"Bug Tracker" = "https://github.com/RasmussenLab/python_package/issues" | ||
|