-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.34 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
44
45
46
47
48
49
[build-system]
requires = ["flit_core >=3.7,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "gen_fex"
version = "0.1.2"
description = "Probabilistic feature extraction for financial data in JAX framework"
requires-python = ">=3.10"
readme = "README.md"
license = { text = "LICENSE" } # This line ensures the license is recognized
authors = [
{ name = "Ahmed Nabil Atwa", email = "dr.ahmedna.ai@gmail.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.26.0,<2.3.0",
"scikit-learn>=1.3.0,<2.0.0",
"jax>=0.4.13,<0.5.0",
"jaxlib>=0.4.13,<0.5.0",
"chex>=0.1.81,<0.2.0",
"distrax>=0.1.5,<0.2.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0,<8.0.0",
"flit>=3.7,<4.0"
]
[project.urls]
homepage = "https://github.com/AI-Ahmed/gen_fex"
repository = "https://github.com/AI-Ahmed/gen_fex"
[tool.flit.module]
name = "gen_fex" # Name of the package
directory = "gen_fex" # New directory name containing __init__.py
[tool.flit.sdist]
include = ["tests/"]