-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
30 lines (26 loc) · 880 Bytes
/
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
[build-system]
requires = ["maturin>=1.7.8"]
build-backend = "maturin"
[project]
name = "rxml"
description = "RXML is a python library to read and write xml files up to 2 times faster than python's xml included library."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Matheus Mendes", email = "mattheus2015@yahoo.com.br" },
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
]
[tool.maturin]
features = ["pyo3/extension-module"]
[project.urls]
Repository = "https://github.com/nephi-dev/rxml"