-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 875 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
36
37
38
39
40
41
42
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
nx3d = "nx3d.__main__:main"
[tool.poetry]
name = "nx3d"
version = "22.11.0"
description = "A 3D plotting library for networkx"
authors = ["Eric Kalosa-Kenyon <[email protected]>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
homepage = "https://github.com/ekalosak/nx3d"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
networkx = "^2.8"
Panda3D = "^1.10"
numpy = "^1.23"
loguru = "^0.6.0"
pyvista = "^0.36.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
black = "^22.8.0"
isort = "^5.10.1"
flake8 = "^5.0.4"
mypy = "^0.971"
matplotlib = "^3.6.1"
[tool.mypy]
exclude = ['docs/']
[tool.isort]
profile = "black"