-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
42 lines (38 loc) · 1.41 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
38
39
40
41
42
[project]
name = "fast_mail_parser"
version = "0.3.0"
description = "Very fast Python library for .eml files parsing."
authors = [{ name = "Andrii Sokyrko", email = "wartwvister@gmail.com" }]
keywords = ["parser", "email", "rfc822", "mime", "maildir"]
requires-python = ">= 3.7"
readme = "Readme.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Rust",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Libraries",
]
dependencies = ["toml==0.10.2", "wheel", "maturin>=1.0,<2.0"]
[project.optional-dependencies]
test = ["pytest~=7.4.4", "pytest-benchmark==4.0.0", "mail-parser==3.15.0"]
[project.urls]
Homepage = "https://github.com/namecheap/fast_mail_parser"
Repository = "https://github.com/namecheap/fast_mail_parser.git"
Issues = "https://github.com/namecheap/fast_mail_parser/issues"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
sdist-include = ["src/*"]