-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.08 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
[build-system]
requires = ["scikit-build-core>=0.10","VBMicrolensing>=5.5"]
build-backend = "scikit_build_core.build"
[project]
name = "RTModel"
description = "RTModel is a tool for microlensing event interpretation"
version = "3.3"
keywords = ['Microlensing analysis and fitting']
authors = [
{ name = "Valerio Bozza", email = "valboz@sa.infn.it" },
]
license = { text = "GPL-3.0" }
requires-python = ">=3.8,<4"
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3',
]
dependencies = [
"numpy",
"pytest",
"matplotlib",
"tqdm",
"tabulate",
"VBMicrolensing>=5.0"
]
[project.urls]
Homepage = "https://github.com/valboz/RTModel"
[tool.scikit-build]
build-dir = "build"
minimum-version = "build-system.requires"
[tool.cibuildwheel]
build-verbosity = "3"
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[tool.setuptools.package-data]
"RTModel.data" = ["data/*"]