forked from maread99/market_prices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (93 loc) · 2.31 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools>=43.0.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "market-prices"
description = "Meaningful OHLCV datasets"
authors = [
{email = "[email protected]"},
{name = "Marcus Read"}
]
readme = "README.md"
license = {text = "MIT License"}
keywords = [
"finance",
"prices",
"historical-data",
"yahoo",
"investing",
"stocks",
"currencies",
"forex",
"crypto",
"etf",
"funds",
"bonds",
"commodities",
"indices",
]
requires-python = "~=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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 :: Implementation :: CPython",
"Topic :: Education",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"exchange_calendars",
"numpy",
"pandas",
"tzdata",
"yahooquery",
"valimp",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"black",
"flake8",
"flake8-docstrings",
"hypothesis",
"pytest",
"pytest-mock",
"tables",
]
dev = [
"black",
"flake8",
"flake8-docstrings",
"hypothesis",
"pytest",
"pytest-mock",
"tables",
"mypy",
"mypy-extensions",
"pandas-stubs",
"pip-tools",
"pre-commit",
"pylint",
]
[project.urls]
homepage = "https://github.com/maread99/market_prices"
documentation = "https://github.com/maread99/market_prices/blob/master/docs/tutorials_docs.md"
"Issue Tracker" = "https://github.com/maread99/market_prices/issues"
"Source Code" = "https://github.com/maread99/market_prices"
[tool.setuptools_scm]
write_to = "src/market_prices/_version.py"
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311']