-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.5 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 = "pyOPENDART"
version = "0.3.0"
description = "전자공시시스템 DART 파이썬 API (for Humans)"
authors = ["Seonghyeon Kim <self@seonghyeon.dev>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/NovemberOscar/pyOPENDART"
keywords = ["data", "market", "stock", "korea", "investment", "kospi", "kosdaq"]
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: Korean",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
]
[tool.poetry.dependencies]
python = "^3.7.1"
requests = "^2.25.1"
furl = "^2.1.0"
python-dateutil = "^2.8.1"
pandas = "^1.2.1"
httpx = {version = "^0.16.1", optional = true}
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.7.0"
notebook = "^6.2.0"
mkdocs = "^1.1.2"
mkdocs-material = "^6.2.8"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
[tool.poetry.extras]
httpx = ["httpx"]
[tool.black]
line-length = 120
target_version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| buck-out
| build
| dist
| tests
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"