-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 811 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 811 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fk-graph"
packages = ["src/fk_graph"]
version = "0.0.15"
authors = [
{ name="Andrew Curtis", email="fk.graph@fastmail.com" },
{ name="John C Thomas" },
{ name="Rahman Gawa" },
]
description = "Visualise the graphs hidden within relational databases"
dependencies = [
"networkx>=3.1",
"SQLAlchemy>=2.0.22",
"dash>=2.13",
"pandas>=2.1",
"networkx>=3.1",
"plotly>=5.16",
"flask>=2.2",
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/MrCurtis/fk-graph"
[project.scripts]
fk-graph = "fk_graph.cli:main"