forked from J-Quants/jquants-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.53 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
[tool.poetry]
name = "jquants-api-client"
version = "0.0.0" # use poetry-dynamic-versioning
authors = [
"J-Quants Project Contributors <[email protected]>",
]
description = "J-Quants API Client Library"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
keywords = ["jquants", "api", "client", "J-Quants"]
packages = [
{ include = "jquantsapi" }
]
homepage = "https://github.com/J-Quants/jquants-api-client-python"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/J-Quants/jquants-api-client-python/issues"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.dependencies]
python = "^3.8.0"
requests = "^2.23.0"
types-requests = "^2.28.5"
types-python-dateutil = "^2.8.19"
pandas = ">=1.4.3"
numpy = [
{ version = "^1.22.4", python = ">=3.8,<3.12" },
{ version = "^1.26.0", python = ">=3.12" }
]
tomli = { version = "^2.0.1", python = ">=3.8,<3.11" }
tenacity = "^8.0.1"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
isort = "^5.10.1"
flake8 = "^5.0.0"
mypy = "^1.9.0"
pyproject-flake8 = "^5.0.0"
pytest = "8.1.1"
pytest-cov = "^5.0.0"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
[tool.flake8]
max-line-length = 120
max-complexity = 18
ignore = "E203,E266,W503,"
per-file-ignores = "__init__.py:F401"
exclude = ".venv"
[tool.isort]
profile = "black"