-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
80 lines (73 loc) · 2.18 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
[tool.numpydoc_validation]
checks = ["all"]
[tool.black]
line-length = 79
target-version = ['py310', 'py311', 'py312', 'py313']
[tool.check-manifest]
ignore = [
"tox.ini",
".header-template",
"requirements.txt",
"requirements_dev.txt",
"tests",
"assets",
"draft",
"tools",
"res",
]
[tool.pytest.ini_options]
markers = [
"plot: marks tests related to matplotlib integration (deselect with '-m \"not plot\"')",
]
testpaths = ["tests"]
addopts = "-m 'not slow' -n auto -p no:warnings"
# =============================================================================
# PACKAGING
# =============================================================================
[project]
name = "garpar"
version = "1.5.0dev0"
authors = [
{ name = "Diego N Gimenez Irusta", email = "[email protected]" },
{ name = "Nadia A Luczywo", email = "[email protected]" },
{ name = "Juan B Cabral", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE.txt" }
description = "Generation and Analysis of Real and Artificial Portfolio Returns"
keywords = [
"market simulation",
"informational efficiency",
"portfolio optimization",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering/Finances",
]
urls = { Homepage = "https://garpar.quatrope.org/", Repository = "https://github.com/quatrope/garpar" }
dependencies = [
"attrs>=23.2.0",
"build>=1.2.1",
"h5py>=3.11.0",
"importlib_metadata",
"numpy>=2.2.0",
"pyportfolioopt>=1.5.0",
"scikit-learn>=1.6.0",
"seaborn>=0.13.0",
"pandas>=2.2.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["garpar", "garpar.*"]
namespaces = false