forked from Soju06/python-kis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (106 loc) ยท 2.99 KB
/
Copy pathpyproject.toml
File metadata and controls
115 lines (106 loc) ยท 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "python-kis"
description = "ํ์ด์ฌ ํ๊ตญํฌ์์ฆ๊ถ REST ๊ธฐ๋ฐ Trading API ๋ผ์ด๋ธ๋ฌ๋ฆฌ"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Soju06", email = "qlskssk@gmail.com" }
]
keywords = [
"python",
"client",
"library",
"trading",
"websocket",
"realtime",
"investing",
"korean",
"investment",
"autotrading",
"koreainvestment"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Typing :: Typed"
]
requires-python = ">=3.10"
dependencies = [
"requests>=2.32.3",
"websocket-client>=1.8.0",
"cryptography>=43.0.0",
"colorlog>=6.8.2",
"tzdata",
"typing-extensions",
"python-dotenv (>=1.2.1,<2.0.0)"
]
dynamic = []
[project.urls]
"Bug Tracker" = "https://github.com/Soju06/python-kis/issues"
"Documentation" = "https://github.com/Soju06/python-kis/wiki/Tutorial"
"Source Code" = "https://github.com/Soju06/python-kis"
[tool.setuptools.packages.find]
where = ["."]
include = ["pykis"]
exclude = ["tests"]
[tool.poetry]
version = "2.1.6" # placeholder, ์ค์ ๋ฒ์ ์ ํ๊ทธ์์ ์ฃผ์
packages = [
{ include = "pykis", from = "." },
]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"
strict = true
tagged-metadata = true
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.1"
pytest-cov = "^7.0.0"
pytest-html = "^4.1.1"
pytest-asyncio = "^1.3.0"
python-dotenv = "^1.2.1"
requests-mock = "^1.12.1"
plantuml = "^0.3.0"
pre-commit = "^3.7.1"
ruff = "^0.6.9"
pytest-benchmark = "^4.0.0"
[tool.pytest.ini_options]
minversion = "9.0"
pythonpath = ["."]
testpaths = ["tests"]
addopts = [
"--cov=pykis",
"--cov-report=term-missing",
"--cov-report=html:reports/coverage_html",
"--cov-report=xml:reports/coverage.xml",
"--html=reports/test_report.html",
"--junitxml=reports/junit_report.xml",
"--self-contained-html",
"--import-mode=importlib",
"--strict-markers"
]
markers = [
"unit: Unit tests - fast, isolated tests without external dependencies",
"integration: Integration tests - tests with mocked API calls",
"performance: Performance tests - benchmark and stress tests",
"slow: Slow running tests",
"requires_api: Tests that require real API credentials"
]