-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
53 lines (49 loc) · 1.36 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
[tool.poetry]
name = 'folx'
version = '0.2.12'
description = 'Forward Laplacian for JAX'
authors = [
"Nicholas Gao <[email protected]>",
"Jonas Koehler <[email protected]>",
"Adam Foster <[email protected]>",
]
maintainers = [
"Nicholas Gao <[email protected]>",
"Jonas Koehler <[email protected]>",
]
license = 'MIT'
readme = 'README.md'
homepage = 'https://github.com/microsoft/folx'
repository = 'https://github.com/microsoft/folx'
keywords = ["jax", "laplacian", "numeric"]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: GPU :: NVIDIA CUDA',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
jax = "*"
jaxlib = "*"
jaxtyping = "*"
numpy = "*"
pytest = "*"
parameterized = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
ignore = [
"E741", # ambiguous variable name
]
[tool.ruff.format]
quote-style = "single"
line-ending = "lf"