-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (52 loc) · 1.18 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
[project]
name = "arcae"
version = "0.2.6"
authors = [
{name = "Simon Perkins", email = "[email protected]"}
]
description = "Arrow bindings for casacore"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires_python = ">= 3.10"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3"
]
dependencies = [
"appdirs",
"numpy >= 2.0.0",
"pyarrow == 16.1.0"
]
[project.optional-dependencies]
applications = [
"click",
"rich",
]
dev = [
"pre-commit",
"tbump"
]
test = [
"duckdb",
"pytest >= 7.0.0",
"python-casacore >= 3.5.0; sys_platform != 'darwin' and python_version<'3.12'",
"requests"
]
[project.scripts]
arcae = "arcae.applications.entrypoint:main"
[project.urls]
Repository = "https://github.com/ratt-ru/arcae"
[build-system]
requires = [
"cython>=3.0.2, < 3.0.10",
"scikit-build-core",
"numpy >= 2.0.0",
"pyarrow == 16.1.0"]
build-backend = "scikit_build_core.build"
[tools.setuptools.packages]
find = {}
[tool.scikit-build]
# build-dir = "/tmp/arcae"
cmake.minimum-version = "3.26.1"
cmake.build-type = "RelWithDebInfo"
install.strip = false