-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (29 loc) · 984 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "jax-f16"
version = "0.0.2"
description = "Jax F16 dynamics"
authors = [{ name = "Oswin So" }, { email = "oswinso@gmail.com" }]
maintainers = [{ name = "Oswin So" }, { email = "oswinso@gmail.com" }]
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
]
dependencies = ["jax", "jaxtyping"]
[project.optional-dependencies]
dev = ["pytest==5.0.0", "pytest-cov[all]", "mypy==0.910", "black==21.10b0"]
[project.urls]
Homepage = "https://mit-realm.github.io/efppo"
documentation = "https://github.com/mit-realm/jax-f16"
repository = "https://github.com/mit-realm/jax-f16"
changelog = "https://github.com/mit-realm/jax-f16/blob/main/CHANGELOG.md"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
known_first_party = [""]