-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.84 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (57 loc) · 1.84 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "spellbind"
dynamic = ["version"]
description = "A library which provides observable values to which other values can be bound"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Georg Plaz", email = "georg.plaz@gmail.com"},
]
requires-python = ">=3.10"
keywords = [
"reactive", "programming", "computed", "derived",
"values", "variables", "data-binding",
"observable", "events", "event-driven"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
# type extensions uses semantic versioning: https://semver.org/
"typing_extensions >=4.13, <5"
]
[project.optional-dependencies]
lint = ["flake8>=7.2.0"]
test = ["pytest>=8.4.0", "pytest-cov"]
typecheck = ["mypy>=1.17.2"]
validating = ["spellbind[lint,typecheck,test]"]
[project.urls]
Homepage = "https://github.com/FancyNeuron/spellbind"
Repository = "https://github.com/FancyNeuron/spellbind"
Issues = "https://github.com/FancyNeuron/spellbind/issues"
Documentation = "https://github.com/FancyNeuron/spellbind#readme"
[tool.mypy]
enable_error_code = "explicit-override"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
spellbind = ["py.typed"]
[tool.setuptools_scm]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--strict-markers"
testpaths = ["tests"]
[tool.coverage.run]
source = ["src"]