forked from GraphingLib/GraphingLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 871 Bytes
/
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
[tool.poetry]
name = "graphinglib"
version = "1.6.0"
description = "An object oriented wrapper combining the functionalities of Matplotlib and Scipy"
license = "MIT"
authors = [
"Gustave Coulombe <[email protected]>",
"Yannick Lapointe <[email protected]>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.24.2"
scipy = "^1.10.1"
matplotlib = "^3.7.1"
PyYAML = "^6.0"
platformdirs = "^3.11.0"
setuptools-scm = "^8.0.4"
shapely = "^2.0.3"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
ipykernel = "^6.23.0"
sphinx-favicon = "^1.0.1"
sphinx-copybutton = "^0.5.2"
sphinx-design = "^0.5.0"
pydata-sphinx-theme = "^0.14.1"
numpydoc = "^1.7.0"
pygithub = "^2.3.0"
pyperclip = "^1.9.0"
[build-system]
requires = ["poetry-core", "setuptools>=64", "setuptools_scm>=8"]
build-backend = "poetry.core.masonry.api"