-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
39 lines (34 loc) · 965 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
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "accesser"
version = "0.10.0"
authors = [
{ name="URenko" },
]
description = "🌏一个解决SNI RST导致维基百科、Pixiv等站点无法访问的工具 | A tool for solving SNI RST"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
'packaging',
'cryptography',
'tld',
'dnspython >= 2.7',
'tomli >= 1.1.0 ; python_version < "3.11"'
]
[project.optional-dependencies]
doh = ["dnspython[doh]"]
doq = ["dnspython[doq]"]
[project.scripts]
accesser = "accesser:run"
[project.urls]
"Homepage" = "https://github.com/URenko/Accesser"
"Bug Tracker" = "https://github.com/URenko/Accesser/issues"
[tool.setuptools.package-data]
accesser = ["*.toml", "pac"]