-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 1.12 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>=0.12,<0.13"]
build-backend = "maturin"
[project]
name = "quanshu"
requires-python = ">=3.7"
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["uvloop == 0.16", "click == 8", "pyyaml"]
[project.optional-dependencies]
test = ["pytest > 5.0.0", "pytest-cov[all]", "pytest-asyncio", "httpx"]
[project.urls]
homepage = "https://github.com/songww/quanshu"
documentation = "readthedocs.org"
repository = "https://github.com/songww/quanshu"
changelog = "github.com/songww/quanshu/blob/master/CHANGELOG.md"
[project.scripts]
quanshu = "quanshu:main"
[project.console_scripts]
quanshu = "quanshu:main"