-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.1 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
[project]
name = "gradientdrift"
version = "0.2.0"
description = "GradientDrift uses JAX to fit econometric models on datasets that do not fit in memory."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Philippe Debie" }
]
requires-python = ">=3.10"
dependencies = [
"jax>=0.4.34",
"optax>=0.2.4",
"numpy>=1.24.1",
"scipy>=1.10.1",
"lark>=1.1.5"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Environment :: Console"
]
[project.urls]
"Homepage" = "https://github.com/philippe554/gradientdrift"
"Source" = "https://github.com/philippe554/gradientdrift"
"Tracker" = "https://github.com/philippe554/gradientdrift/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]