-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (69 loc) · 2.2 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (69 loc) · 2.2 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
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jano"
dynamic = ["version"]
description = "Temporal partitioning and backtesting utilities for time-correlated datasets."
readme = { file = "README.md", content-type = "text/markdown" }
license = "MIT"
license-files = ["LICENSE.txt"]
requires-python = ">=3.9"
authors = [
{ name = "Marcos Manuel Muraro", email = "mmmuraro@gmail.com" }
]
maintainers = [
{ name = "Marcos Manuel Muraro", email = "mmmuraro@gmail.com" }
]
keywords = ["backtesting", "time-series", "walk-forward-validation", "model-selection", "temporal-validation", "pandas", "time-series-validation", "simulation"]
urls = { Homepage = "https://github.com/marmurar/jano", Documentation = "https://marmurar.github.io/jano/", Repository = "https://github.com/marmurar/jano", Issues = "https://github.com/marmurar/jano/issues", Changelog = "https://github.com/marmurar/jano/releases" }
dependencies = [
"pandas>=2.0",
"numpy>=1.24"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Testing",
]
[project.optional-dependencies]
mcp = [
"mcp[cli]>=1.0,<2; python_version >= '3.10'",
]
polars = [
"polars>=1.0,<2",
]
dev = [
"build>=1.2",
"mcp[cli]>=1.0,<2; python_version >= '3.10'",
"polars>=1.0,<2",
"pytest>=8.0",
"pytest-cov>=5.0",
"sphinx>=7.4",
"twine>=5.1",
]
[project.scripts]
jano-mcp = "jano.mcp_server:main"
[tool.setuptools.packages.find]
include = ["jano*"]
[tool.setuptools.dynamic]
version = { attr = "jano._version.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["jano"]
[tool.coverage.report]
show_missing = true
skip_covered = false
fail_under = 99