-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
41 lines (36 loc) · 1001 Bytes
/
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
[build-system]
requires = ["scikit-build-core>=0.10"]
build-backend = "scikit_build_core.build"
[project]
name = "RTModel"
description = "RTModel is a tool for microlensing event interpretation."
version = "2.3"
keywords = ['Microlensing analysis and fitting']
authors = [
{ name = "Valerio Bozza", email = "[email protected]" },
]
license = { text = "GPL-3.0" }
requires-python = ">=3.7,<4"
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
]
dependencies = [
"numpy",
"pytest",
"matplotlib",
"tqdm",
"VBMicrolensing>=4.1.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.setuptools.package-data]
"RTModel.data" = ["data/*"]