forked from pmorissette/ffn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (68 loc) · 1.54 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
[build-system]
requires = [
"oldest-supported-numpy",
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "ffn"
description = "Financial functions for Python"
version = "1.1.1"
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.8"
authors = [
{ name = "Philippe Morissette", email = "[email protected]" },
]
keywords = [
"python",
"finance",
"quant",
"quant finance",
"algotrading",
"algorithmic trading",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"decorator>=5.0.7",
"matplotlib>=1",
"numpy",
"pandas>=0.19",
"scikit-learn>=0.15",
"scipy>=0.15",
"tabulate>=0.7.5",
"yfinance>=0.2",
]
[project.optional-dependencies]
dev = [
"build",
"ruff>=0.5.0,<0.8",
"pytest",
"pytest-cov",
"setuptools",
"twine",
"wheel",
]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
Repository = "https://github.com/pmorissette/ffn"
Homepage = "http://pmorissette.github.io/ffn/"
[tool.ruff]
line-length = 180
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]