-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.21 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
[build-system]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[project]
name = "finitediffx"
dynamic = ["version"]
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
description = "Finite difference tools in JAX"
authors = [{ name = "Mahmoud Asem", email = "mahmoudasem00@gmail.com" }]
keywords = [
"jax",
"finite-difference",
]
dependencies = ["jax>=0.4.7", "typing-extensions"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.setuptools.dynamic]
version = { attr = "finitediffx.__version__" }
[tool.setuptools.packages.find]
include = ["finitediffx", "finitediffx.*"]
[project.urls]
Source = "https://github.com/ASEM000/finitediffx"
[tool.ruff]
select = ["F", "E", "I"]
line-length = 120
ignore = [
"E731", # do not assign a lambda expression, use a def
]