Skip to content

Commit

Permalink
restrict python versions, use of dev/docs dependencies, add triangle …
Browse files Browse the repository at this point in the history
…(as git repo, for macOS)
  • Loading branch information
mmouchous-ledger committed Nov 27, 2024
1 parent bd3a851 commit 0ed19c6
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,33 @@ laserstudio = 'laserstudio.__main__:main'
laserstudio_listdevices = 'laserstudio.instruments.list_serials:list_devices'

[tool.poetry.dependencies]
python = "^3.9"
python = ">=3.9 <3.11"
pyqt6 = ">=6.0"
pystages = "1.2"
pillow = "10.4.0"
opencv-python = "4.9.0.80"
pyusb = "1.2.1"
pyyaml = "6.0.1"
shapely = "2.0.5"
shapely = "^2.0.5"
triangle = { git = "https://github.com/drufat/triangle.git", rev = "v20230923" }
requests = "^2.32.3"
numpy = "1.26.4"
pypdm = "1.1"
flask = "3.0.3"
flask-restx = "1.3.0"
hidapi = "0.14.0"
pytest = "7.0.1"
hidapi = "^0.14.0"
pynit = { git = "https://github.com/Ledger-Donjon/pynit.git" }
scipy = "1.13.1"

[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"

[tool.poetry.group.docs]
optional = true

[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-rtd-theme = "*"
myst_parser = "*"

[tool.poetry-dynamic-versioning]
enable = true
Expand Down

0 comments on commit 0ed19c6

Please sign in to comment.