-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
37 lines (33 loc) · 1.25 KB
/
pyproject.toml
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
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "python-bidi"
version = "0.6.3"
readme = "README.rst"
keywords = ["bidi", "unicode", "layout"]
description = "Python Bidi layout wrapping the Rust crate unicode-bidi"
authors = [{ name = "Meir Kriheli", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Text Processing",
"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",
]
[project.urls]
Homepage = "https://github.com/MeirKriheli/python-bidi"
Repository = "https://github.com/MeirKriheli/python-bidi"
Documentation = "https://python-bidi.readthedocs.io/en/latest/"
Issues = "https://github.com/MeirKriheli/python-bidi/issues"
Changelog = "https://github.com/MeirKriheli/python-bidi/blob/master/CHANGELOG.rst"
[project.scripts]
pybidi = "bidi:main"
[project.optional-dependencies]
dev = ["pytest"]