forked from pyedifice/pyedifice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "pyedifice"
version = "0.1.0"
description = "Declarative UI framework for Qt"
authors = ["David Ding"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/xc-jp/pyedifice"
repository = "https://github.com/xc-jp/pyedifice"
packages = [{include = "edifice", from = "."}]
[tool.nix]
format = "poetry-core"
[tool.poetry.dependencies]
python = ">= 3.8,<3.12" # "^3.10"
numpy = ">= 1.19.4" # "^1.25.1"
qasync = ">= 0.13.0" # "^0.24.0"
[tool.poetry.group.dev.dependencies]
certifi = ">= 2020.12.5" # "^2023.5.7"
chardet = ">= 4.0.0" # "^5.1.0"
idna = ">= 2.10" # "^3.4"
pandas = ">= 1.2.0" # "^2.0.3"
PyQt6 = ">= 6.0" # "^6.5.1"
PyQt6-sip = ">= 13.0.0" # "^13.5.1"
PySide6 = ">= 6.0.0" # "^6.5.1.1"
shiboken6 = ">= 6.0.0" # "^6.5.1.1"
six = ">= 1.15.0" # "^1.16.0"
snowballstemmer = ">= 2.0.0" # "^2.2.0"
pytz = ">= 2020.5" # "^2023.3"
requests = ">= 2.25.1" # "^2.31.0"
watchdog = ">= 1.0.2" # "^3.0.0"
urllib3 = ">= 1.26.2" # "^2.0.3"
python-dateutil = ">= 2.8.1" # "^2.8.2"
matplotlib = ">= 3.3.3" # "^3.7.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"