-
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.
Drive requirements using requirements.txt
- Loading branch information
1 parent
a454ef8
commit 92bbd92
Showing
1 changed file
with
3 additions
and
10 deletions.
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,7 +1,7 @@ | ||
[project] | ||
|
||
name = "collector-node" | ||
dynamic = ["version"] | ||
dynamic = ["version", "dependencies"] | ||
description = "Orcfax collector node" | ||
readme = "README.md" | ||
|
||
|
@@ -11,15 +11,8 @@ authors = [ | |
{name = "R. Spencer", email = "[email protected]" }, | ||
] | ||
|
||
# Optional. | ||
# | ||
# Packages installed by pip when the project is installed. | ||
dependencies = [ | ||
"certifi==2024.2.2", | ||
"python-dotenv==1.0.1", | ||
"websockets==12.0", | ||
"simple-sign==0.0.1rc1", | ||
] | ||
[tool.setuptools.dynamic] | ||
dependencies = {file = ["requirements/requirements.txt"]} | ||
|
||
[project.urls] | ||
"Homepage" = "https://orcfax.io" | ||
|