forked from vshekar/qmicroscope
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (44 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
55 lines (44 loc) · 1.34 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
52
53
54
55
[build-system]
requires = ["hatchling>=1.27.0", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "qmicroscope"
description = "A camera widget for qt GUIs using qtpy"
readme = "README.md"
authors = [
{ name = "Venkateswaran (Shekar) Shekar", email = "vshekar1@bnl.gov" },
]
requires-python = ">=3.8"
dependencies = ["qtpy", "opencv-python-headless", "pillow"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version"]
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "qmicroscope/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["qmicroscope"]
[tool.setuptools_scm]
root = "."
fallback_version = "0.0.0"
version_scheme = "semantic"
local_scheme = "node-and-date"
write_to = "qmicroscope/_version.py"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
qmicroscope = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
pyside6 = ">=6.11.1,<7"
requests = ">=2.34.2,<3"
pyepics = ">=3.5.9,<4"