-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
70 lines (62 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "pymicroscope"
dynamic = ["version"]
description = "A modular Python framework for controlling and acquiring images from microscopes"
authors = [
{ name = "Daniel C. Côté", email = "dccote@cervo.ulaval.ca" }
]
license = { text = "MIT" }
requires-python = ">=3.9"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pyro5",
"psutil",
"pyserial",
"numpy",
"Pillow",
"mytk",
]
[project.optional-dependencies]
opencv = ["opencv-python"]
hardware = ["hardwarelibrary"]
all = ["pymicroscope[opencv,hardware]"]
dev = [
"pymicroscope[all]",
"coverage",
]
[project.urls]
Homepage = "https://github.com/DCC-Lab/PyMicroscope"
Repository = "https://github.com/DCC-Lab/PyMicroscope"
Issues = "https://github.com/DCC-Lab/PyMicroscope/issues"
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm>=7.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
write_to = "src/pymicroscope/_version.py"
[tool.coverage.run]
source = ["pymicroscope"]
branch = true
[tool.coverage.report]
show_missing = true
skip_empty = true