forked from HartmutBorth/PLASIM
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
81 lines (74 loc) · 2.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "exoplasim"
version="3.4.1"
dependencies = ["ninja",
"meson",
"scipy>=1.6.0",
"numpy>=1.22"
]
authors = [
{name = "Adiv Paradise", email = "paradise.astro@gmail.com"},
{name = "Maureen J. Cohen"},
{name = "Edilbert Kirk"},{name="Harmut Borth"},{name="Frank Lunkeit"}
]
maintainers = [
{name="Adiv Paradise", email="paradise.astro@gmail.com"}
]
description = "Exoplanet GCM"
readme = "README.rst"
keywords = ["space","science","astronomy","exoplanet","simulation","climate","weather","GCM"]
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[projection.optional-dependencies]
h5 = ['h5py',]
nc = ['netCDF4',]
mpl = ['matplotlib','basemap']
pRT = ['petitRADTRANS>=2.4']
[project.urls]
Documentation = "https://exoplasim.readthedocs.io"
Repository = "https://github.com/alphaparrot/ExoPlaSim.git"
Issues = "https://github.com/alphaparrot/ExoPlaSim/issues"
[tool.hatch.build.targets.wheel]
packages = ['/exoplasim',]
exclude = ['exoplasim/cat*',
'exoplasim/Cat_UG_00',
'exoplasim/glacier',
'exoplasim/images',
'exoplasim/octave',
'exoplasim/Plasim_Report',
'exoplasim/Plasim_RM_16',
'exoplasim/Plasim_UG_16',
'exoplasim/puma',
'exoplasim/Puma_UG_17',
'exoplasim/ug_cat_00',
'exoplasim/sam',
'exoplasim/lsg',
'exoplasim/tools',
'exoplasim/plasim/run/*.sra']
[tool.hatch.build.targets.sdist]
packages = ['/exoplasim',]
exclude = ['exoplasim/cat*',
'exoplasim/Cat_UG_00',
'exoplasim/glacier',
'exoplasim/images',
'exoplasim/octave',
'exoplasim/Plasim_Report',
'exoplasim/Plasim_RM_16',
'exoplasim/Plasim_UG_16',
'exoplasim/puma',
'exoplasim/Puma_UG_17',
'exoplasim/ug_cat_00',
'exoplasim/sam',
'exoplasim/lsg',
'exoplasim/tools',
'exoplasim/plasim/run/*.sra']