-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (51 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (51 loc) · 1.23 KB
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
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pygraphedit"
version = "0.0.5"
authors = [
{ name="Andrii Kovryhin"},
{ name="Maksym Tur"},
{ name="Denis Logunov"},
{ name="Izabella Tylek"},
]
description = "Graph editor for Jupyter"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies=[
"asttokens==2.4.1",
"colorama==0.4.6",
"comm==0.2.0",
"decorator==5.1.1",
"executing==2.0.1",
"ipycanvas==0.13.1",
"ipyevents==2.0.2",
"ipython==8.18.1",
"ipywidgets==8.1.1",
"jedi==0.19.1",
"jupyterlab-widgets==3.0.9",
"matplotlib-inline==0.1.6",
"networkx==3.2.1",
"numpy==1.26.2",
"parso==0.8.3",
"Pillow==10.1.0",
"prompt-toolkit==3.0.41",
"pure-eval==0.2.2",
"Pygments==2.17.2",
"scipy==1.11.4",
"six==1.16.0",
"stack-data==0.6.3",
"traitlets==5.14.0",
"wcwidth==0.2.12",
"widgetsnbextension==4.0.9",
"pymunk==6.6.0",
]
[project.urls]
Homepage = "https://github.com/EndRay/graph-editor"
Issues = "https://github.com/EndRay/graph-editor/issues"