-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.39 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
[build-system]
requires = ["setuptools>=74.1.0", "setuptools_scm>=8", "cython",
"numpy>=2.0,<3; python_version>'3.8'"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.setuptools]
zip-safe = false
include-package-data = true
ext-modules = [
{name = "labscript_c_extensions.runviewer.resample", sources = ["src/runviewer/resample.pyx"]}
]
[tool.setuptools.packages]
find = {namespaces = false}
[project]
name = "labscript-c-extensions"
description = "A module containing C-extensions for the labscript suite"
authors = [
{name = "The labscript suite community", email = "labscriptsuite@googlegroups.com"},
]
keywords = ["experiment control", "automation", "visualization"]
license = {file = 'LICENSE.txt'}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.17.3",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "http://labscriptsuite.org/"
Documentation = "https://docs.labscriptsuite.org/"
Repository = "https://github.com/labscript-suite/labscript-c-extension/"
Downloads = "https://github.com/labscript-suite/labscript-c-extension/releases/"
Tracker = "https://github.com/labscript-suite/labscript-c-extension/issues/"