-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
124 lines (111 loc) · 2.71 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
118
119
120
121
122
123
124
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.(git|hg|mypy_cache|tox|venv)
| _?build
| dist
| __pycache__
)/
'''
[tool.commitizen]
name = "cz_conventional_commits"
version_files = ["pyproject.toml:version"]
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 79
lines_after_imports = 2
multi_line_output = 3
use_parentheses = true
[tool.poetry2conda]
name = "wraeblast"
[tool.poetry2conda.dependencies]
aiohttp = { channel = "pip" }
backoff = { channel = "pip" }
boto3 = { channel = "pip" }
colormath = { channel = "pip" }
diskcache = { channel = "pip" }
glom = { channel = "pip" }
lark = { channel = "pip" }
mergedeep = { channel = "pip" }
pydub = { channel = "pip" }
pyttsx3 = { channel = "pip" }
"ruamel.yaml" = { channel = "pip" }
structlog = { channel = "pip" }
uplink = { channel = "pip" }
[tool.poetry]
name = "wraeblast"
version = "0.3.0"
description = "Tools for Path of Exile filter generation and economy data analysis."
authors = ["David Gidwani <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
wraeblast = "wraeblast.cmd:main"
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
lark = "^0.11.3"
matplotlib = "^3.4.2"
pydantic = "^1.8.2"
cleo = "^0.8.1"
structlog = "^21.1.0"
requests = "^2.25.1"
uplink = { extras = ["aiohttp"], version = "^0.9.6" }
colour = "^0.1.5"
python-json-logger = "^2.0.1"
glom = "^20.11.0"
"ruamel.yaml" = "^0.17.5"
Jinja2 = "^3.0.1"
colorcet = "^2.0.6"
palettable = "^3.3.0"
mergedeep = "^1.3.4"
pydub = "^0.25.1"
boto3 = "^1.18.26"
pandas = "^1.3.2"
pyttsx3 = { version = "^2.90", optional = true }
colormath = "^3.0.0"
backoff = "^1.11.1"
aiohttp = "^3.7.4"
cachetools = "^4.2.2"
inflection = "^0.5.1"
pandera = "^0.7.1"
numpy = "^1.22.2"
tables = "^3.7.0"
[tool.poetry.dev-dependencies]
black = "^21.5b1"
isort = "^5.8.0"
pre-commit = "^2.12.1"
ipython = "^7.23.1"
colorama = "^0.4.4"
pytest = "^6.2.4"
flameprof = "^0.4"
plotly = "^5.1.0"
mkdocs-material = "^7.1.11"
mkdocstrings = "^0.15.2"
pymdown-extensions = "^8.2"
mkdocs-literate-nav = "^0.4.0"
mkdocs-minify-plugin = "^0.4.0"
tox = "^3.24.3"
poetry2conda = "^0.3.0"
ipympl = "^0.7.0"
pyright = "^0.0.9"
pandas-stubs = "^1.2.0"
python-semantic-release = "^7.19.2"
semver = "2.10"
boto3-stubs = { extras = ["s3"], version = "^1.20.48" }
commitizen = "^2.20.4"
[tool.poetry.extras]
tts = ["pyttsx3"]
[tool.pyright]
useLibraryCodeForTypes = true
[tool.pytest.ini_options]
filterwarnings = ['ignore::DeprecationWarning']
[tool.semantic_release]
branch = "main"
version_toml = ['pyproject.toml:tool.poetry.version']
build_command = "poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"