-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.01 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
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pybeamline"
version = "2.0.0"
requires-python = ">=3.9"
description = "Streaming Process Mining"
readme = "README.md"
authors = [
{ name = "Andrea Burattin" }
]
license-files = [ "LICENSE.txt" ]
dependencies = [
"graphviz>=0.20,<1.0",
"objsize~=0.7.0",
"paho-mqtt>=2.1,<3.0",
"pandas>=2.2,<3.0",
"pm4py>=2.7.19.3",
"pyais>=2.8,<3.0",
"reactivex==4.1.0",
"requests>=2.31,<3.0",
"river>=0.21.2",
"typing_extensions>=4.0,<5.0",
"numpy>=1.26,<3",
# for visualization
"matplotlib", "imageio", "pillow",
# for interactivity
"ipython"
]
[project.urls]
Homepage = "https://beamline.cloud/"
Issues = "https://github.com/beamline/pybeamline/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["pybeamline*"]
[project.optional-dependencies]
dev = [
"pytest",
"build",
"pip-tools",
"tox>=4.0"
]
test = [
"pytest",
"coverage"
]