-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (82 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "feedbax"
version = "0.1.2"
description = "Optimal feedback control + interventions in JAX."
# url = ""
authors = [
{name = "Matt L Laporte", email = "matt.l.laporte@gmail.com"}
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = [
'jax',
'neural-networks',
'optimal-control',
'optimal-feedback-control',
'pytorch',
'biomechanics'
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"diffrax",
"equinox",
"jax",
"jaxtyping",
"matplotlib",
"numpy",
"optax",
"plotly",
"polars",
"seaborn",
"tqdm",
# Tensorboard-related:
'crc32c',
'tensorboardX',
]
[project.urls]
repository = "https://github.com/mlprt/feedbax"
documentation = "https://docs.lprt.ca/feedbax"
[project.optional-dependencies]
tensorboard = [
'tensorboardX',
'crc32c',
]
typing = [
'pyright',
'typeguard',
]
tests = [
'coverage',
'pytest',
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
packages = ["feedbax"]
[tool.hatch.build.targets.wheel]
packages = ["feedbax"]
[tool.pyright]
include = ["feedbax"]
exclude = ["**/__pycache__"]
verboseOutput = true
reportMissingImports = true
reportMissingTypeStubs = true
# Temporary:
# reportAttributeAccessIssue = false
[tool.black]
target-version = ['py310', 'py311', 'py312']
include = 'feedbax\/.*\.pyi?$'
line-length = 88