-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (38 loc) · 1.08 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
[tool.poetry]
name = "BinaryJax"
version = "0.1.0"
description = "A JAX-based package for microlensing binary lens"
authors = ["Haibin Ren <rhb23@mails.tsinghua.edu.cn>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/CoastEgo/BinaryJax"
repository = "https://github.com/CoastEgo/BinaryJax"
keywords = ["jax", "microlensing", "binary lensing"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = ">=3.8"
jax = ">=0.4.13"
jaxlib = ">=0.4.13"
numpy = "*"
scipy = "*"
matplotlib = "*"
[tool.poetry.dev-dependencies]
# Add any development dependencies here, if needed
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
extend-include = ["*.ipynb"]
src = []
[tool.ruff.lint]
fixable = ["I001", "F401"]
ignore = ["E501","E402", "E721", "E731", "E741", "F722","E702"]
select = ["E", "F", "I001"]
[tool.ruff.lint.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
lines-after-imports = 2
order-by-type = false