-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
90 lines (78 loc) · 2.17 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
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "scope-astr"
authors = [
{name = "Arjun Savel", email = "[email protected]"},
{name= "Megan Bedell"},
{name= "Eliza M.-R. Kempton"},
{name= "Peter Smith"},
{name= "Jacob L. Bean"},
{name= "Lily L. Zhao"},
{name= "Jorge A. Sanchez"},
{name= "Michael R. Line"},
]
description = "Simulating high-resolution spectroscopy of exoplanet atmospheres."
readme = "README.md"
requires-python = ">=3.10"
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.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"numpy",
"astropy>5.1",
"scipy",
"jax",
"exoplanet",
"tqdm",
"emcee",
"numba",
"scikit-learn>=1.3.0",
"matplotlib",
"pandas",
"exoplanet-core",
"pymc>=4",
"schwimmbad",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = ["nbsphinx",
"nbconvert",
"pygments>=2.4.2",
"Jinja2==3.1.3",
"sphinx-book-theme",
"markupsafe==2.0.1",
"mock"]
[tool.setuptools_scm]
write_to = "src/scope/_version.py"
version_scheme = "release-branch-semver"
local_scheme = "no-local-version"
git_describe_command = "git describe --tags --exact-match"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"] # if using src layout
[project.urls]
Homepage = "https://github.com/arjunsavel/scope"
Issues = "https://github.com/arjunsavel/scope/issues"
Documentation = "https://scope-astr.readthedocs.io/en/latest/"
[tool.black]
target_version = ['py310', 'py311']
[tool.black_nbconvert]
target_version = ['py310', 'py311']