-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 913 Bytes
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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fractrics"
dynamic = ["version"]
description = 'A fractal econometrics package for python, built with JAX.'
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
keywords = []
authors = [
{ name = "Alfredo Diodati", email = "diodatialfredo@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"jax==0.7.2",
"matplotlib==3.10.6",
"numpy==2.3.3",
"pandas==2.3.3"
]
[project.urls]
Documentation = "https://github.com/AlfredoDiodati/fractrics#readme"
Issues = "https://github.com/AlfredoDiodati/fractrics/issues"
Source = "https://github.com/AlfredoDiodati/fractrics"
[tool.hatch.version]
path = "src/fractrics/__about__.py"