-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (46 loc) · 1.02 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
[build-system]
requires = [
"setuptools>=45",
]
build-backend = "setuptools.build_meta"
[project]
name = "JAX-GalSim"
authors = [
{name = "GalSim Developers"},
]
description = "The modular galaxy image simulation toolkit, but in JAX"
version = "0.0.1rc1"
license = {file = "LICENSE"}
readme = "README.md"
dependencies = [
"numpy >=1.18.0",
"galsim >=2.3.0",
"jax",
"jaxlib",
"astropy >=2.0",
"tensorflow-probability >=0.21.0",
"quadax",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-codspeed"]
[project.urls]
home = "https://github.com/GalSim-developers/JAX-GalSim"
[tool.setuptools.packages.find]
include = ["jax_galsim*"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["C901", "E203", "E501"]
preview = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "I001"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests/GalSim/tests/",
"tests/jax",
"tests/Coord/tests/",
]
filterwarnings = [
"ignore::DeprecationWarning",
]