-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 995 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 995 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ADScopeControl"]
[tool.hatch.build.targets.wheel.force-include]
"./pyproject.toml" = "./ADScopeControl/pyproject.toml"
[project]
name = "PyADScopeControl"
version = "1.2.8"
authors = [
{ name="Christoph Schmidt", email="cschmidt.fs@gmail.com" },
]
description = "A UI for controlling the Analog Discovery Series"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
'matplotlib',
'numpy',
'pandas',
'PySide6',
'scipy',
'rich',
'pyqtgraph',
'toml',
'PySide6WidgetCollection>=1.0.2', # important, otherwise AboutDialog is not available
'confPy6',
'mpPy6'
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/agentsmith29/PyADScopeControl"