forked from drsaikirant88/PyALMA3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (37 loc) · 927 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[project]
name = "alma"
version = "1.0.1"
description = "Calculation of tidal Love numbers given an appropriate model of interior structure for a planetary body. "
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name="Flavio Petricca", email="[email protected]"},
{name="Saikiran Tharimena"},
{name="Daniele Melini"},
{name="Giorgio Spada"},
{name="Amirhossein Bagheri"},
{name="Marshall J. Styczinski"},
{name="Steven D. Vance"},
]
keywords = [
"Astronomy",
"Exoplanets",
"Moons"
]
license = {text = "GPL v3.0"}
classifiers = []
dependencies = [
"joblib",
"numpy",
"mpmath",
"psutil",
"ipykernel",
"matplotlib",
"toml"
]
[tool.setuptools]
py-modules = ['alma']