Skip to content

Commit

Permalink
Create package (#22)
Browse files Browse the repository at this point in the history
* Add build config

* Add dependencies
  • Loading branch information
MrCurtis committed Oct 28, 2023
1 parent f376e5f commit 70dc61f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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="[email protected]" },
{ 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"

0 comments on commit 70dc61f

Please sign in to comment.