-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (60 loc) · 1.96 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
# ==================================================================================== #
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# ==================================================================================== #
[tool.poetry]
name = "YFrake"
version = "2.1.2"
description = "A fast and flexible stock market, forex and cryptocurrencies data provider."
readme = "README.md"
license = "MIT License"
authors = [
"Mattias Aabmets <mattias.aabmets@gmail.com>"
]
keywords = ["yahoo", "finance", "api", "server", "scraper"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent"
]
packages = [
{include = "yfrake"}
]
include = [
"yfrake",
"yfrake.*",
"yfrake.*.*"
]
# ==================================================================================== #
[tool.poetry.urls]
"Repository" = "https://github.com/aspenforest/yfrake"
"Documentation" = "https://yfrake.readthedocs.io"
# ==================================================================================== #
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "~3.8"
aiohttp-swagger3 = "~0.7"
aiohttp-cors = "~0.7"
psutil = "~5.9"
tomli = "~2.0"
pyyaml = "~6.0"
# ==================================================================================== #
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-asyncio = "*"
coverage = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
# ==================================================================================== #
[tool.poetry.scripts]
gen-spec = "yfrake.openapi.generator:generate_openapi_spec"
# ==================================================================================== #
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning"
]