-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.07 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "hedging-gym"
authors = [
{ name="Paolo D'Elia", email="paolo.delia99@gmail.com"}
]
description = "HedgingGym is a reinforcement learning environment for training and testing hedging strategies."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Education",
"Intended Audience :: Developers"
]
dependencies = [
"gymnasium==0.29.1",
"numpy==1.26.4",
"JaxFin==0.3.3",
"jax==0.4.23"
]
dynamic = ["version"]
[tool.setuptools.packages.find]
include = ["hedging_gym*"]
exclude = ["test*"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
pythonpath = [
"."
]
addopts = [
"--import-mode=importlib",
]