forked from vshekar/qmicroscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 1.08 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
[build-system]
requires = ["hatchling", "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 = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = ["qtpy", "opencv-python-headless", "pillow<10.1.0,>=8.3.2"]
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"