-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.29 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
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[project]
name = "python-bidi"
version = "0.6.7"
readme = "README.rst"
keywords = ["bidi", "unicode", "layout"]
description = "Python Bidi layout wrapping the Rust crate unicode-bidi"
authors = [{ name = "Meir Kriheli", email = "mkriheli@gmail.com" }]
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",
"Programming Language :: Python :: 3.14",
]
[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"]