-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
140 lines (127 loc) · 3.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry]
authors = ["Noah Jenner <[email protected]>"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
"Typing :: Typed",
]
description = "An average platinum price calculator for tradeable items in Warframe."
documentation = "https://warmac.readthedocs.io/en/"
# include = [""]
keywords = ["platinum", "warframe calculator", "warframe market", "warframe"]
license = "MIT"
maintainers = ["Noah Jenner <[email protected]>"]
name = "WarMAC"
packages = [{include = "warmac"}]
readme = "README.md"
repository = "https://github.com/Eutropios/WarMAC"
version = "0.0.4"
[tool.poetry.dependencies]
python = ">=3.8,<3.13.0"
urllib3 = ">=2.0.4,<3.0.0"
[tool.poetry.scripts]
warmac = "warmac.__init__:console_main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Eutropios/WarMAC/issues"
[tool.docformatter]
black = true
pre-summary-newline = true
recursive = true
style = "sphinx"
wrap-descriptions = 72
wrap-summaries = 72
[tool.mypy]
exclude = [
'\.git',
'\.hg',
'\.mypy_cache',
'\.ruff_cache',
'\.tox',
'\.venv',
'_build',
'buck-out',
'build',
'dist',
]
python_version = "3.12"
strict = true
[tool.ruff]
explicit-preview-rules = false
ignore = [
"AIR",
"ANN101",
"COM812",
"DJ",
"ERA001",
"FIX",
"INT",
"ISC001",
"ISC002",
"NPY",
"PD",
"PT",
"SLF001",
"SLOT",
"T20",
"TD",
"UP006",
"UP007",
"UP035",
]
indent-width = 4
line-length = 88
preview = true
select = ["ALL"]
show-fixes = true
target-version = "py38"
[tool.ruff.flake8-copyright]
author = "Noah Jenner"
[tool.ruff.flake8-implicit-str-concat]
allow-multiline = true
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "double"
multiline-quotes = "double"
[tool.ruff.format]
exclude = [
".git",
".hg",
".mypy_cache",
".tox",
".venv",
"_build",
"buck-out",
"build",
"dist",
"ruff_cache",
]
indent-style = "space"
line-ending = "auto"
quote-style = "double"
skip-magic-trailing-comma = false
[tool.ruff.flake8-type-checking]
exempt-modules = ["typing"]
strict = true
[tool.ruff.isort]
required-imports = ["from __future__ import annotations"]
[tool.ruff.per-file-ignores]
"docs/source/conf.py" = ["CPY001", "D100", "D104", "I002", "INP001"]
"tests/__init__.py" = ["CPY001", "D100", "D104", "I002"]
"warmac/__main__.py" = ["CPY001", "D100", "D104", "I002"]
[tool.ruff.pycodestyle]
max-doc-length = 72
[tool.ruff.pydocstyle]
convention = "pep257"