Skip to content

Commit

Permalink
chore: add pyproject.toml and requirements.txt files
Browse files Browse the repository at this point in the history
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
Sped0n committed Oct 20, 2023
1 parent 4579fe7 commit a6cc6ff
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pyproject.toml
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",
]
6 changes: 6 additions & 0 deletions requirements.txt
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

0 comments on commit a6cc6ff

Please sign in to comment.