-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 2.13 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
[tool.poetry]
name = "fynx"
version = "0.1.2"
description = "Python reactive state management library inspired by MobX"
authors = ["Cassidy Bridges <cassidybridges@gmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/off-by-some/fynx"
repository = "https://github.com/off-by-some/fynx"
keywords = ["reactive", "state-management", "observable", "functional-programming", "mobx"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
packages = [{include = "fynx"}]
[tool.poetry.dependencies]
python = ">=3.9"
[tool.poetry.group.docs.dependencies]
mkdocs = ">=1.4.0"
mkdocs-material = ">=9.0.0"
mkdocstrings = {extras = ["python"], version = ">=0.20.0"}
pydoc-markdown = {version = ">=4.8.0", python = ">=3.9,<4.0"}
pymdown-extensions = ">=10.0.0"
# mistletoe = ">=1.0.0" # Temporarily disabled due to Python version conflict
[tool.poetry.group.dev.dependencies]
pytest = ">=8.4.2,<9.0.0"
pytest-cov = ">=4.0.0"
black = ">=22.0.0"
isort = {extras = ["colors"], version = ">=5.10.0"}
mypy = ">=1.0.0"
pre-commit = ">=2.20.0"
pydoc-markdown = {version = ">=4.8.0", python = ">=3.9,<4.0"}
[tool.poetry.group.benchmark.dependencies]
rich = ">=13.0.0"
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
exclude = "examples/streamlit"
[tool.poetry.group.test.dependencies]
pytest = ">=8.4.2,<9.0.0"
pytest-cov = ">=4.0.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"