forked from elbakramer/koapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
117 lines (107 loc) · 3.08 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[tool.poetry]
name = "koapy"
version = "0.8.0"
description = "Kiwoom Open Api Plus Python"
license = "MIT OR Apache-2.0 OR GPL-3.0-or-later"
authors = ["Yunseong Hwang <[email protected]>"]
maintainers = ["Yunseong Hwang <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/elbakramer/koapy"
repository = "https://github.com/elbakramer/koapy"
documentation = "https://koapy.readthedocs.io/en/latest/"
keywords = ["kiwoom", "kiwoom-open-api"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Natural Language :: Korean",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Topic :: Office/Business :: Financial",
]
include = [
"docs",
"tests",
"*.rst",
"LICENSE",
"LICENSE.*",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/elbakramer/koapy/issues"
[tool.poetry.dependencies]
# main runtime dependencies
python = ">=3.8,<3.10"
click = "^8.0.3"
cryptography = "^36.0.1"
deprecated = "^1.2.13"
"discord.py" = "^1.7.3"
exchange-calendars = "^3.5.1"
grpcio = "^1.43.0"
grpcio-tools = "^1.43.0"
lxml = "^4.7.1"
numpy = "^1.22.1"
openpyxl = "^3.0.9"
pandas = "^1.4.0"
protobuf = "^3.19.4"
psutil = "^5.9.0"
pygtrie = "^2.4.2"
pyhocon = "^0.3.59"
PySide2 = "^5.15.2"
pytz = "^2021.3"
QtPy = "^2.0.1"
requests = "^2.27.1"
Rx = "^3.2.0"
schedule = "^1.1.0"
Send2Trash = "^1.8.0"
SQLAlchemy = "^1.4.31"
tabulate = "^0.8.9"
tqdm = "^4.62.3"
tzlocal = "^4.1"
wrapt = "^1.13.3"
# windows specific dependencies
pywin32 = { version = "^303", markers = "sys_platform == 'win32'" }
pywinauto = { version = "^0.6.8", markers = "sys_platform == 'win32'" }
windows-curses = { version = "^2.3.0", markers = "sys_platform == 'win32'" }
# python compatibility backports for runtime
typing-extensions = { version = "^4.0.1", markers = "python_version < '3.10'" }
[tool.poetry.dev-dependencies]
# development dependencies
actions-toolkit = "^0.1.12"
black = "^22.1.0"
bump2version = "^1.0.1"
codecov = "^2.1.12"
coverage = "^6.3.1"
dunamai = "^1.8.0"
flake8 = "^4.0.1"
isort = "^5.10.1"
mypy = "^0.931"
pip-tools = "^6.4.0"
pre-commit = "^2.17.0"
pylint = "^2.12.2"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-xdist = "^2.5.0"
pyupgrade = "^2.31.0"
# python compatibility backports for development
astunparse = { version = "^1.6.3", markers = "python_version < '3.9'" }
# documentation dependencies
Sphinx = "^4.4.0"
sphinx-autoapi = "^1.8.4"
nbconvert = "^6.4.1"
nbsphinx = "^0.8.8"
ipython = "^8.0.1"
[tool.poetry.scripts]
koapy = "koapy.cli:main"
[tool.black]
line-length = 88
force-exclude = "((.+)_pb2.py|(.+)_pb2_grpc.py)"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"