-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (56 loc) · 1.76 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling>=1.9.0", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pymodaq_data"
dynamic = [
"version",
]
description = "Modular Data Acquisition with Python"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Sébastien Weber", email = "sebastien.weber@cemes.fr" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
"pymodaq_utils>=0.0.8",
"multipledispatch",
"numpy < 2.0.0",
"packaging",
"pint",
"python-dateutil",
"scipy",
"toml",
"tables>=3.10; python_version>=\"3.10\"", # issue with some version of required package blosc2>=2.2.8
"tables<3.9; python_version<\"3.10\"", # issue with some version of required package blosc2>=2.2.8
]
[project.urls]
Homepage = "http://pymodaq.cnrs.fr"
Source = "https://github.com/PyMoDAQ/pymodaq_data"
Tracker = "https://github.com/PyMoDAQ/pymodaq_data/issues"
[tool.hatch.version]
source = "vcs"
fallback-version = "5.0.12"
[tool.hatch.build.targets.sdist]
include = [
"/src",
]
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"