forked from UKEIAM/graphxplore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 905 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["graphxplore", "graphxplore.*"]
[project]
name="graphxplore"
version="1.0.1"
authors = [
{name="Louis Bellmann"}
]
description="data exploration using graph representations and dashboards, as well as meta data extraction, cleaning, and transformation"
readme="README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"neo4j==5.25.0",
"chardet==5.2.0",
"plotly==5.24.1",
"pandas==2.2.3"
]
[project.urls]
Homepage = "https://github.com/UKEIAM/graphxplore"
Documentation = "https://graphxplore.readthedocs.io/en/latest/"
"User Guide" = "https://ukeiam.github.io/graphxplore/"