-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (35 loc) · 998 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
34
35
36
37
[build-system]
requires = ["uv"]
[project]
name = "Breksta"
version = "0.9.0"
dependencies = [
"dash",
"pandas",
"plotly",
"pyside6",
"sqlalchemy",
"pathvalidate",
"dash-bootstrap-components",
"pyarrow",
"appdirs",
]
requires-python = ">=3.10"
authors = [
{ name = "Matthew Alexandrakis", email = "m.alexandrakis@qmul.ac.uk" },
{ name = "Giles Greenway", email = "g.greenway@qmul.ac.uk" },
]
description = "Breksta - Signal and Data Acquisition App"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["python", "data acquisition"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
[project.urls]
Homepage = "https://github.qmul.ac.uk/itsr-rse/breksta"
Documentation = "https://github.qmul.ac.uk/itsr-rse/breksta"
Repository = "https://github.qmul.ac.uk/itsr-rse/breksta"
"Bug Tracker" = "https://github.qmul.ac.uk/itsr-rse/breksta/issues"
Changelog = "https://github.qmul.ac.uk/itsr-rse/breksta/blob/master/CHANGELOG.md"