-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject_binary.toml
More file actions
31 lines (28 loc) · 1.14 KB
/
pyproject_binary.toml
File metadata and controls
31 lines (28 loc) · 1.14 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
[project]
name = "python-redux"
dynamic = ["version"]
description = "Redux implementation for Python (Binary Extension)"
license = "Apache-2.0"
authors = [{ name = "Sassan Haradji", email = "me@sassanh.com" }]
maintainers = [{ name = "Sassan Haradji", email = "me@sassanh.com" }]
readme = "README.md"
requires-python = ">=3.11"
keywords = ['python', 'store', 'redux', 'reactive', 'autorun', 'view']
dependencies = ["python-immutable >= 1.1.1", "python-strtobool >= 1.0.0"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls]
homepage = 'https://github.com/sassanh/python-redux/'
repository = 'https://github.com/sassanh/python-redux/'
documentation = 'https://github.com/sassanh/python-redux/'
changelog = 'https://github.com/sassanh/python-redux/blob/main/CHANGELOG.md'
[build-system]
requires = ["setuptools>=68", "wheel", "cython>=3.0", "hatch-vcs"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["redux*", "redux_pytest*"]