-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 1018 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 1018 Bytes
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
[tool.poetry]
name = "darkcore"
version = "0.5.1"
description = "Practical functional programming primitives for Python: Monads, Transformers, and DSL operators for safe business logic"
authors = ["minamorl <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/minamorl/darkcore"
homepage = "https://github.com/minamorl/darkcore"
keywords = ["monad", "functional", "dsl", "business logic"]
packages = [{ include = "darkcore" }]
include = ["darkcore/py.typed"]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
pytest = "^8.3.5"
pytest-cov = "^6.1.1"
hypothesis = "^6.112"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
strict = true
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disable_error_code = ["misc"]
files = ["darkcore"]
[tool.pytest.ini_options]
addopts = "-v --cov=darkcore"
testpaths = ["tests"]