-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (60 loc) · 1.53 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
[tool.poetry]
name = "lemonpy-mgng"
version = "0.1.1"
description = "mgng"
authors = ["Stefan Ulbrich <[email protected]>"]
readme = "README.md"
classifiers = [
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License"
]
packages = [
{ include = "lemonpy_mgng", from = "src"}
]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.7.2,<4.0"
numpy = "^1.18.1"
attrs = "^22.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.4"
matplotlib = "^3.5.3"
mypy = "^0.971"
ipykernel = "^6.15.2"
pylint = "^2.15.2"
nb-black = "^1.0.7"
black = "^22.8.0"
ipywidgets = "^8.0.2"
pre-commit = "^2.20.0"
pydata-sphinx-theme = "^0.10.1"
Sphinx = "^5.1.1"
myst-parser = "^0.18.0"
pyenchant = "^3.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.10"
warn_unused_configs = true
namespace_packages = true
mypy_path = "src"
show_error_codes = true
strict = true
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
profile = "black"
[[tool.mypy.overrides]]
module = "numpy.linalg"
ignore_missing_imports = true
[tool.black]
line-length = 120
target_version = ["py310"]
[tool.pylint.format]
max-line-length=120
[tool.pylint."MESSAGES CONTROL"]
# disable = ["missing-module-docstring"]
[tool.pylint.basic]
good-names=['R','t','i','j','k','ex','Run','_']
[tool.pylint."SPELLING"]
spelling-private-dict-file="PylintSpell.txt"