-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (61 loc) · 2.2 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
# ? ----------------------------------------------------------------------------
# ? Building
# ? ----------------------------------------------------------------------------
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
# ? ----------------------------------------------------------------------------
# ? Building
# ? ----------------------------------------------------------------------------
[project]
name = "clean_base"
version = "0.1.2"
authors = [{ name = "Samuel Galvão Elias", email = "[email protected]" }]
description = "A simple and lighweight package tor clean softwares."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["Bioinformatics", "Clean Architecture", "Monad Either"]
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Homepage = "https://github.com/sgelias/clean-base-py"
[tool.poetry]
name = "clean_base"
version = "0.1.2"
description = "A simple and lighweight package tor clean softwares."
authors = ["Samutl Galvão Elias <[email protected]> "]
[tool.poetry.dependencies]
python = ">=3.8"
Unidecode = "^1.3.6"
[tool.poetry.dev-dependencies]
mypy = "^1.5.1"
# ? ----------------------------------------------------------------------------
# ? Code consistence
# ? ----------------------------------------------------------------------------
[tool.mypy]
python_version = 3.11
exclude = ["build/", "dist/", "docs/", "venv/"]
ignore_missing_imports = "True"
follow_imports = "normal"
warn_redundant_casts = "True"
warn_unused_ignores = "False"
disallow_any_generics = "True"
check_untyped_defs = "True"
no_implicit_reexport = "True"
namespace_packages = "False"
disallow_untyped_defs = "True"
[tool.attrs-mypy]
init_forbid_extra = "True"
init_typed = "True"
warn_required_dynamic_aliases = "True"
warn_untyped_fields = "True"
[tool.flake8]
ignore = "E722, W503, E501, E203"
per-file-ignore = "**/__init__.py: F401"