-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.07 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vidigi"
dynamic = ["version"]
description = "A package for creating animated visualisations of queues and pathways from historical data or simulations"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "Sammi Rosser", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"plotly>=5.12.0",
"numpy>=1.26.2",
"pandas>=2.0.1",
"simpy>=4.0.0"
]
[project.urls]
Homepage = "https://github.com/bergam0t/vidigi"
"Bug Tracker" = "https://github.com/bergam0t/vidigi/issues"
[tool.hatch.version]
path = "vidigi/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/vidigi",
]
[project.optional-dependencies]
streamlit = [
"st-javascript==0.1.5"
]