forked from Ciela-Institute/caustics
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
71 lines (62 loc) · 1.89 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "caustics"
dynamic = [
"dependencies",
"version"
]
authors = [
{ name="Connor Stone", email="[email protected]" },
{ name="Alexandre Adam", email="[email protected]" },
{ name="UW SSEC", email="[email protected]" }
]
description = "The lensing pipeline of the future: GPU-accelerated, automatically-differentiable, highly modular. Currently under heavy development: expect interface changes and some imprecise/untested calculations."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = [
"caustics",
"lensing",
"astronomy",
"strong lensing",
"gravitational lensing",
"astrophysics",
"differentiable programming",
"pytorch"
]
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://mila.quebec/en/"
Documentation = "https://caustics.readthedocs.io/en/latest/"
Repository = "https://github.com/Ciela-Institute/caustics"
Issues = "https://github.com/Ciela-Institute/caustics/issues"
[project.optional-dependencies]
dev = [
"numba>=0.58.1,<0.59.0",
"lenstronomy==1.11.1",
"pytest>=8.0,<9",
"pytest-cov>=4.1,<5",
"pytest-mock>=3.12,<4",
"pre-commit>=3.6,<4",
]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/caustics/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.ruff]
# Same as Black.
line-length = 100
[tool.pytest.ini_options]
norecursedirs = "tests/utils"