-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·173 lines (153 loc) · 3.52 KB
/
pyproject.toml
File metadata and controls
executable file
·173 lines (153 loc) · 3.52 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
[tool.poetry]
name = "agent-guy"
version = "0.0.1"
description = "Agent-based modeling in Python"
authors = ["Laszlo Balo <laszlo.balo@icloud.com>"]
readme = "README.md"
packages = [{ include = "agent_guy" }]
[tool.poetry.dependencies]
python = "<3.13,>=3.10"
numpy = "^1.26.1"
pandas = "^2.1.1"
pydantic = "^2.4.2"
dynaconf = "^3.2.3"
hvplot = "^0.9.0"
panel = "^1.3.0"
matplotlib = "^3.8.0"
xarray = "^2023.10.1"
datashader = "^0.16.0"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
pre-commit = "*"
pytest = "*"
coverage = "*"
mypy = "*"
bandit = "*"
darglint = "*"
mypy-extensions = "*"
pydocstyle = "*"
pylint = "*"
pyupgrade = "*"
typed-ast = "*"
pytest-cov = "*"
pyfakefs = "*"
click = "*"
isort = "*"
taskipy = "*"
jupyterlab = "*"
pyparsing = "*"
jupyter-bokeh = "*"
gprof2dot = "^2022.7.29"
snakeviz = "^2.2.0"
[tool.poetry.group.mkdocs.dependencies]
mkdocs = "*"
livereload = "*"
mkdocs-material = "*"
mkdocs-gen-files = "*"
mkdocs-macros-plugin = "*"
mkdocs-extra-sass-plugin = "*"
mkdocs-table-reader-plugin = "*"
mkdocs-simple-plugin = "*"
mkdocs-multirepo-plugin = "*"
mkdocs-glightbox = "*"
mkdocs-literate-nav = "*"
mkdocs-section-index = "*"
mkdocs-autorefs = "*"
mkdocs-git-revision-date-localized-plugin = "*"
mkdocs-git-authors-plugin = "*"
mkdocstrings-python = "*"
mkdocstrings = "*"
mkdocs-coverage = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
fail_under = 70
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 39
extend_skip = ["__init__.py"]
known_typing = [
"typing",
"types",
"typing_extensions",
"mypy",
"mypy_extensions",
]
sections = [
"FUTURE",
"TYPING",
"STDLIB",
"THIRDPARTY",
"FIRSTPARTY",
"LOCALFOLDER",
]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.mypy]
# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
python_version = 3.9
# exclude tests and docs folders
exclude = ["tests", "docs"]
pretty = true
show_traceback = true
color_output = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = false
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/6.2.x/customize.html#pyproject-toml
# Directories that are not visited by pytest collector:
norecursedirs = [
"hooks",
"*.egg",
".eggs",
"dist",
"build",
"docs",
".tox",
".git",
"__pycache__",
]
doctest_optionflags = [
"NUMBER",
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
]
# Extra options:
addopts = [
"--strict-markers",
"--tb=short",
"--doctest-modules",
"--doctest-continue-on-failure",
]
[tool.coverage.run]
branch = true
source = ["agent_guy"]
[tool.taskipy.tasks]
lint = "task codestyle && task mypy"
mypy = "poetry run mypy --config-file pyproject.toml ./"
codestyle = "task isort && task black"
isort = "poetry run isort --settings-path pyproject.toml ./"
black = "poetry run black --config pyproject.toml ./"
test = "task pytest agent_guy"
pytest = "poetry run pytest -c pyproject.toml --cov-report term --cov-report xml --cov-report html --cov"