-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.47 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
[tool.poetry]
name = "pythainav"
version = "0.3.0"
description = "a Python interface to pull thai mutual fund NAV"
authors = ["Nutchanon Ninyawee <[email protected]>"]
maintainers = ["Nutchanon Ninyawee <[email protected]>"]
readme = 'README.md'
repository = "https://github.com/CircleOnCircles/pythainav"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
furl = "^2.1"
dateparser = "^1.0.0"
dataclasses = {version = "^0.7.0", python = "3.6"}
requests = "^2.22"
fuzzywuzzy = {extras = ["speedup"], version = ">=0.17,<0.19"}
importlib-metadata = "^4.8.1"
typing-extensions = "^3.10.0"
[tool.poetry.group.dev.dependencies]
pytest = "^6.1"
pygments = "^2.7"
pymdown-extensions = "^9.0"
mkautodoc = "^0.1.0"
pandas = "^1.0.1"
pre-commit = "^2.8.2"
pyupgrade = "^2.7.3"
isort = "^5.6.4"
black = "^21.9b0"
mypy = "^0.910"
bandit = "^1.6.2"
safety = "^1.9.0"
pylint = "^2.6.0"
pydocstyle = "^6.1.1"
python-decouple = "^3.3"
httpretty = "^1.0.2"
mkdocs-material = "^7.3.0"
mkdocs = "^1.2.3"
[tool.black]
# https://github.com/psf/black
line-length = 80
target-version = ["py37"]
[tool.isort]
# https://github.com/timothycrosley/isort/
known_typing = "typing,types,typing_extensions,mypy,mypy_extensions"
sections = "FUTURE,TYPING,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
include_trailing_comma = true
default_section = "FIRSTPARTY"
multi_line_output = 3
indent = 4
force_grid_wrap = 0
use_parentheses = true
line_length = 80
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"