-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
32 lines (29 loc) · 957 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
31
32
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "emval"
authors = [
{ name="Lev Ostatnigrosh", email="[email protected]" },
]
description = "emval is a blazingly fast email validator"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
]
dynamic = ["version"]
[tool.maturin]
module-name = "emval._emval"
features = ["pyo3/extension-module"]
[project.urls]
Homepage = "https://github.com/bnkc/emval"
Issues = "https://github.com/bnkc/emval/issues"