-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·77 lines (65 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
executable file
·77 lines (65 loc) · 1.78 KB
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
[tool.poetry]
name = "pylearning"
version = "0.1.0"
description = ""
authors = ["Ortiz Fernandez, Alvaro <[email protected]>"]
packages = [{include = "pylearning"}]
license = "Propietary"
keywords = ["cookiecutter"]
repository = "https://github.com/alvaroof/python_learning"
readme = ["README.md", "LICENSE", "RELEASE_NOTES.md"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Medical Science Apps"
]
include = ["pylearning/*"]
exclude = ["tests/*"]
[tool.poetry.dependencies]
click = "~8"
loguru = "~0.6"
python = "~3.12"
tk = "^0.1.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "22.6.0"}
coverage = "6.4.3"
darglint = "1.8.1"
docformatter = "1.4"
flake8 = "5.0.4"
flake8-pyproject = "~1"
GitPython = "3.1.27"
isort = "5.10.1"
jupyterlab = "3.2.5"
jupytext = "1.13.7"
jupyter_contrib_nbextensions = "0.5.1"
pre-commit = "2.20.0"
pylint = "2.15.10"
pytest = "7.2.0"
pytest-runner = "6.0.0"
pytest-xdist = "3.1.0"
python-dotenv = "0.20.0"
radon = "5.1.0"
semver = "2.13.0"
snakeviz = "2.1.1"
[tool.poetry.group.docs.dependencies]
furo = "^2022.12.7"
myst-parser = "^0.18.1"
sphinx = "5.3.0"
sphinx-autodoc-typehints = "^1.21.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pylearning = "pylearning.__main__:_main"
[tool.flake8]
exclude = "docs"
max-line-length = 100
docstring_style = "sphinx"
ignore = ["DAR003", "W503"]
ignore_regex = "^test_(.*)"