-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (64 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (64 loc) · 1.7 KB
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
[build-system]
requires = ['hatchling', "hatch-fancy-pypi-readme", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "yieldplotlib"
authors = [
{ name = "Corey Spohn", email = "corey.a.spohn@nasa.gov" },
{ name = "Sarah Steiger", email = "ssteiger@stsci.edu" },
]
description = "A Python pipeline to generate plots for exoplanet yield simulations."
dependencies = [
"matplotlib",
"astropy",
"colorspacious",
"synphot",
"EXOSIMS",
"tqdm",
"yippy",
"pyparsing>=3.1.4",
"lod-unit>=1.6.0",
"docopt",
"pooch",
"mplcyberpunk",
"scipy<1.15",
]
license = { file = "LICENSE" }
dynamic = ['readme', 'version']
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
[project.urls]
Homepage = "https://github.com/HWO-Yield-Visualizations/yieldplotlib"
Issues = "https://github.com/HWO-Yield-Visualizations/yieldplotlib/issues"
[project.scripts]
ypl_run = "yieldplotlib.ypl_cli:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/yieldplotlib/_version.py"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
path = "README.md"
[project.optional-dependencies]
docs = [
"sphinx",
"myst-nb",
"sphinx-book-theme",
"sphinx-autoapi",
"sphinx_autodoc_typehints",
"matplotlib",
"itables",
]
test = ["nox", "pytest", "pytest-cov"]
[tool.ruff]
exclude = ["src/yieldplotlib/key_map.py"]
[tool.ruff.lint]
select = ["B", "D", "E", "F", "I", "UP", "RUF"]
[tool.ruff.lint.pydocstyle]
convention = "google"