parent
11b81b1466
commit
3a3fc40199
3 changed files with 62 additions and 1 deletions
@ -1,2 +1 @@ |
|||||||
/venv/ |
|
||||||
.idea |
.idea |
@ -0,0 +1,46 @@ |
|||||||
|
[[package]] |
||||||
|
name = "numpy" |
||||||
|
version = "1.23.2" |
||||||
|
description = "NumPy is the fundamental package for array computing with Python." |
||||||
|
category = "main" |
||||||
|
optional = false |
||||||
|
python-versions = ">=3.8" |
||||||
|
|
||||||
|
[[package]] |
||||||
|
name = "pyqt6" |
||||||
|
version = "6.3.1" |
||||||
|
description = "Python bindings for the Qt cross platform application toolkit" |
||||||
|
category = "main" |
||||||
|
optional = false |
||||||
|
python-versions = ">=3.6.1" |
||||||
|
|
||||||
|
[package.dependencies] |
||||||
|
PyQt6-Qt6 = ">=6.3.0" |
||||||
|
PyQt6-sip = ">=13.4,<14" |
||||||
|
|
||||||
|
[[package]] |
||||||
|
name = "pyqt6-qt6" |
||||||
|
version = "6.3.1" |
||||||
|
description = "The subset of a Qt installation needed by PyQt6." |
||||||
|
category = "main" |
||||||
|
optional = false |
||||||
|
python-versions = "*" |
||||||
|
|
||||||
|
[[package]] |
||||||
|
name = "pyqt6-sip" |
||||||
|
version = "13.4.0" |
||||||
|
description = "The sip module support for PyQt6" |
||||||
|
category = "main" |
||||||
|
optional = false |
||||||
|
python-versions = ">=3.7" |
||||||
|
|
||||||
|
[metadata] |
||||||
|
lock-version = "1.1" |
||||||
|
python-versions = "^3.10" |
||||||
|
content-hash = "74d4a65c405497ad0b74bd06a6d49fe6444c0fb4756510e900643dbc9a0a369d" |
||||||
|
|
||||||
|
[metadata.files] |
||||||
|
numpy = [] |
||||||
|
pyqt6 = [] |
||||||
|
pyqt6-qt6 = [] |
||||||
|
pyqt6-sip = [] |
@ -0,0 +1,16 @@ |
|||||||
|
[tool.poetry] |
||||||
|
name = "adventofcode2021" |
||||||
|
version = "0.1.0" |
||||||
|
description = "" |
||||||
|
authors = ["Benjamin Kraft <benjamin.kraft@online.de>"] |
||||||
|
|
||||||
|
[tool.poetry.dependencies] |
||||||
|
python = "^3.10" |
||||||
|
numpy = "^1.23.2" |
||||||
|
PyQt6 = "^6.3.1" |
||||||
|
|
||||||
|
[tool.poetry.dev-dependencies] |
||||||
|
|
||||||
|
[build-system] |
||||||
|
requires = ["poetry-core>=1.0.0"] |
||||||
|
build-backend = "poetry.core.masonry.api" |
Loading…
Reference in new issue