-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.46 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cortecs"
authors = [
{name = "Arjun Savel", email = "asavel@umd.edu"},
{name= "Megan Bedell"},
{name= "Eliza M.-R. Kempton"},
]
description = "Compress opacity for radiative transfer"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["astronomy"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy",
"jaxlib",
"jax",
"tqdm",
"h5py",
"matplotlib",
"pandas",
]
dynamic = ["version"]
[tool.setuptools_scm]
[project.optional-dependencies]
neural_networks = ["tensorflow<=2.15.0.post1",
"keras"]
[project.urls]
Homepage = "https://github.com/arjunsavel/cortecs"
Issues = "https://github.com/arjunsavel/cortecs/issues"
Documentation = "https://cortecs.readthedocs.io"
[tool.black]
target_version = ['py38', 'py39', 'py310', 'py311']
[tool.black_nbconvert]
target_version = ['py38', 'py39', 'py310', 'py311']