From 70dc61f6c73441fff55bafdabbd7cf7852f3fc77 Mon Sep 17 00:00:00 2001 From: MrCurtis <4184070+MrCurtis@users.noreply.github.com> Date: Sat, 28 Oct 2023 00:34:32 +0100 Subject: [PATCH] Create package (#22) * Add build config * Add dependencies --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..67900f6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" +[project] +name = "fk-graph" +version = "0.0.1" +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", + "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"