-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (67 loc) · 1.37 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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pytemppack"
version = "0.0.0"
description = "A python package template with poetry"
license = "MIT"
authors = [
"Andres Algaba <andres.algaba@vub.be>"
]
maintainers = [
"Andres Algaba <andres.algaba@vub.be>"
]
readme = "README.rst"
homepage = "https://www.andresalgaba.com/"
repository = "https://github.com/AndresAlgaba/pytemppack"
documentation = ""
keywords = [
"python",
"package",
"template",
"poetry"]
packages = [
{ include = "pytemppack" }
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
numpy = ">=1.22.3"
pandas = ">=1.4.2"
[tool.poetry.dev-dependencies]
jupyter = ">=1.0.0"
pytest = ">=7.1.1"
pytest-cov = ">=3.0.0"
mypy = ">=0.942"
isort = ">=5.10.1"
black = ">=22.3.0"
flake8 = ">=4.0.1"
bandit = ">=1.7.4"
Sphinx = ">=4.5.0"
sphinx-rtd-theme = ">=1.0.0"
sphinx-autodoc-typehints = ">=1.18.2"
nbsphinx = ">=0.8.8"
nbsphinx-link = ">=1.3.0"
[tool.black]
line-length = 79
target-version = ["py39"]
include_trailing_comma = true
extend-exclude = '''
docs
'''
[tool.isort]
py_version=39
line_length = 79
profile = "black"
extend_skip_glob = ["docs/*"]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
exclude = "docs"
[tool.pytest.ini_options]
testpaths = "tests"
python_files = [
"test_*.py",
"*_test.py",
"tests.py",
]