-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
99 lines (90 loc) · 2.24 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
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling", "hatch-vcs", "setuptools_scm"]
build-backend = "hatchling.build"
[project]
name = "maria"
dynamic = ["version"]
description = "A simulator for ground-based millimeter- and submillimeter-wave telescopes."
readme = { file = "README.rst", content-type = "text/x-rst" }
dependencies = [
"arrow",
"astropy",
"dask",
"h5py",
"healpy",
"matplotlib",
"numpy",
"pandas",
"reproject",
"requests",
"scipy",
"tqdm",
]
requires-python = ">=3.9"
authors = [
{ name = "Thomas Morris", email = "[email protected]" },
{ name = "Joshiwa van Marrevijk", email = "[email protected]" }
]
maintainers = [
{ name = "Thomas Morris", email = "[email protected]" },
{ name = "Joshiwa van Marrevijk", email = "[email protected]" }
]
license = {file = "LICENSE"}
keywords = ["atmosphere", "cosmology", "astronomy"] # Optional
classifiers = [ # Optional
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
[project.optional-dependencies] # Optional
mapmaking = [
"torch",
]
dev = [
"black",
"coverage",
"flake8",
"furo",
"ipykernel",
"isort",
"jupyter",
"nbstripout",
"nbsphinx",
"pandoc",
"pre-commit",
"pre-commit-hooks",
"pytest",
"pytest-codecov",
"sphinx",
"twine",
"ipython",
"matplotlib",
"numpydoc",
"sphinx-copybutton",
"sphinx_rtd_theme",
]
[project.urls]
"Homepage" = "https://github.com/thomaswmorris/maria"
"Bug Reports" = "https://github.com/thomaswmorris/maria/issues"
"Source" = "https://github.com/thomaswmorris/maria/"
[tool.hatch.build.targets.sdist]
exclude = [
"maria/atmosphere/spectra/data/**/*.h5",
"maria/atmosphere/weather/data/**/*.h5",
"data",
"docs",
]
[tool.hatch.build.targets.wheel]
only-include = ["maria"]
[tool.setuptools_scm]
version_file = "maria/_version.py"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "maria/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"