-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 1.07 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
[project]
name = "spright"
version = "24.08.30"
description = 'Bayesian radius-density-mass relation for small planets.'
authors=[{name='Hannu Parviainen', email='hpparvi@gmail.com'}]
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
keywords = ['astronomy', 'astrophysics', 'exoplanets']
dependencies = ["numpy", "numba", "scipy", "uncertainties", "pandas", "plotext",
"astropy", "pytransit", "arviz", "corner", "tqdm", "celerite", "emcee", "mpltern"]
[project.urls]
homepage = 'https://github.com/hpparvi/spright'
[project.scripts]
spright = "spright.scripts.spright:__main__"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ['spright', 'spright.data']
[tool.setuptools.package-data]
"spright.data" = ["*.fits", "*.txt", "*.csv"]