-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.13 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.13 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
[project]
name = "microlux"
version = "0.3.0"
description = "A JAX-based package for microlensing binary lens"
authors = [
{name = "Haibin Ren", email = "rhb23@mails.tsinghua.edu.cn"},
]
requires-python = ">=3.9"
license = {file = "LICENSE"}
readme = "README.md"
urls = {repository = "https://github.com/CoastEgo/microlux"}
keywords = ["jax", "microlensing", "binary lens"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"jax >=0.4.28",
"numpy",
"scipy",
"astropy",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["microlux"]
[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
[tool.pytest.ini_options]
markers = [
"fast: marks tests as fast (deselect with '-m \"not fast\"')",
]