forked from erdogant/d3graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.02 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "d3graph"
dynamic = ["version"]
authors = [{ name = "Michael Wolf", email = "michael@mictronics.de" },]
description = "Python package to visualize the Meshtastic network based on d3js. Based on d3graph."
readme = "README.md"
requires-python = ">=3"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = ["Python", "Meshtastic"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
'pandas',
'numpy',
'colourmap',
'networkx>2',
'ismember',
'jinja2',
'packaging',
'python-louvain',
'datazets',
]
[project.urls]
Homepage = "https://www.mictronics.de"
Download = "https://github.com/Mictronics/d3mesh/archive/{version}.tar.gz"
Bayern-Mesh = "https://www.mictronics.de/bayern-mesh"
[tool.setuptools]
packages = ["d3graph"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "d3graph.__version__" }