-
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.
chore: add pyproject.toml and requirements.txt files
Add pyproject.toml file to specify build system requirements and project metadata. This file includes the required packages and their versions for the project. Add requirements.txt file to list the required packages and their versions for the project.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "lovelace" | ||
dynamic = ["version"] | ||
description = "GUI for https://github.com/Sped0n/ada, powered by PySide6" | ||
authors = [ | ||
{ name = "Sped0n<github.com/Sped0n>", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.11.0" | ||
dependencies = [ | ||
"ftd2xx==1.3.3", | ||
"numpy==1.26.1", | ||
"pyqtgraph==0.13.3", | ||
"PySide6==6.5.3", | ||
"PySide6_Addons==6.5.3", | ||
"PySide6_Essentials==6.5.3", | ||
] |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ftd2xx==1.3.3 | ||
numpy==1.26.1 | ||
pyqtgraph==0.13.3 | ||
PySide6==6.5.3 | ||
PySide6_Addons==6.5.3 | ||
PySide6_Essentials==6.5.3 |