forked from RecordEvolution/IMCtermite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (51 loc) · 1.78 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
[build-system]
requires = ["setuptools>=77.0.0", "wheel", "Cython", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "imctermite"
description = "Enables extraction of measurement data from binary files with extension 'raw' used by proprietary software imcFAMOS and imcSTUDIO and facilitates its storage in open source file formats"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Record Evolution GmbH", email = "mario.fink@record-evolution.de"}
]
maintainers = [
{name = "Record Evolution GmbH"}
]
keywords = ["IMC", "raw", "imcFAMOS", "imcSTUDIO", "imcCRONOS"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"numpy>=1.26.0"
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest>=7.0.0", "pytest-cov>=5.0.0", "gcovr>=7.2", "Cython", "setuptools>=77.0.0"]
[project.urls]
Homepage = "https://github.com/RecordEvolution/IMCtermite.git"
[tool.setuptools]
package-dir = {"" = "python"}
packages = ["imctermite"]
include-package-data = false
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.setuptools.package-data]
imctermite = ["py.typed", "*.pyi"]
[tool.setuptools.exclude-package-data]
imctermite = ["*.pyx", "*.cpp"]
[tool.cibuildwheel]
# Build for Python 3.10-3.13
build = "cp310-* cp311-* cp312-* cp313-*"
# Skip 32-bit builds and musllinux
skip = "*-win32 *-manylinux_i686 *-musllinux_*"
# Tests are already run in test.yml workflow before wheel building
test-skip = "*"