-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (84 loc) · 1.96 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
[tool.poetry]
name = "AWSOM"
version = "0.1.0"
description = ""
authors = ["naoki <74347818+C-naoki@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.group.dev.dependencies]
flake8-isort = "^6.0.0"
flake8-bugbear = "^23.6.5"
flake8-builtins = "^2.1.0"
flake8-eradicate = "^1.5.0"
flake8-pytest-style = "^1.7.2"
flake8-unused-arguments = "^0.0.13"
pyproject-flake8 = "^6.0.0.post1"
[project]
name = "AWSOM"
version = "0.1.0"
description = "Personal Python Template"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
numpy = "^1.24.3"
pandas = "^2.0.2"
matplotlib = "^3.7.1"
scikit-learn = "^1.2.2"
jupyter = "^1.0.0"
ipykernel = "^6.23.2"
seaborn = "^0.12.2"
tqdm = "^4.65.0"
pygithub = "^1.58.2"
pywavelets = "^1.4.1"
[tool.poetry.dev-dependencies]
pre-commit = "^2.18.1"
taskipy = "^1.10.1"
black = "^22.3.0"
mypy = "^0.942"
isort = "^5.10.1"
flake8 = "^6.0.0"
flake8-isort = "^6.0.0"
flake8-bugbear = "^23.6.5"
flake8-builtins = "^2.1.0"
flake8-eradicate = "^1.2.0"
flake8-pytest-style = "^1.6.0"
flake8-unused-arguments = "^0.0.13"
pep8-naming = "^0.12.1"
pytest = "^7.1.1"
pytest-mock = "^3.7.0"
pytest-cov = "^3.0.0"
Sphinx = "^4.5.0"
sphinx-rtd-theme = "^1.0.0"
sphinx-pyproject = "^0.1.0"
[tool.flake8]
extend-ignore = "E203, E741, W503, N806, N802"
exclude = [".venv", ".git", "__pycache__",]
max-complexity = 10
[tool.mypy]
show_error_context = true
show_column_numbers = true
ignore_missing_imports = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
warn_redundant_casts = true
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
[tool.sphinx-pyproject]
project = "AWSOM"
copyright = "2023, naoki"
language = "en"
package_root = "AWSOM"
html_theme = "sphinx_rtd_theme"
todo_include_todos = true
templates_path = ["_templates"]
html_static_path = ["_static"]
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.todo",
"sphinx.ext.napoleon",
]