-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 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
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4.3",
"wheel",
"cython>=3",
"numpy>=2.0.0rc1"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "bilby_cython/_version.py"
[project]
name = "bilby.cython"
authors = [{name = "Colm Talbot", email = "colm.talbot@ligo.org"}]
description = "Optimized functionality for Bilby"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {text = "MIT"}
dependencies = ["numpy"]
readme = "README.md"
urls = {Homepage = "https://git.ligo.org/colm.talbot/bilby-cython"}
dynamic = ["version"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
bilby_cython = ["*.pyx"]
[project.optional-dependencies]
test = [
'lalsuite; sys_platform != "win32" and python_version == "3.11"',
'astropy; sys_platform != "win32"',
'bilby; sys_platform != "win32" and python_version >= "3.10"',
"pytest",
]