forked from valboz/VBMicrolensing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 938 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
[build-system]
requires = ["setuptools>=42", "wheel", "pybind11>=2.6.1"]
build-backend = "setuptools.build_meta"
[project]
name = "VBMicrolensing"
description = "VBMicrolensing is a tool for efficient computation in gravitational microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses."
version = "4.0.0"
keywords = ['Microlsening magnification and astrometry']
license = { text = "GPL-3.0" }
requires-python = ">=3.6,<4"
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
]
dependencies = [
"numpy",
"pytest",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"VBMicrolensing.data" = ["data/*"]