-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1001 Bytes
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1001 Bytes
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "pychee"
description = "Client for Lychee, written in Python."
readme = "README.md"
dynamic = ["version"]
license = {file = "LICENSE"}
maintainers = [
{name = "Quentin Duchemin", email = "quentinduchemin@tuta.io"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries"
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = [
"pydocstyle",
"pylint",
]
test = [
"pytest",
]
dependencies = [
"requests"
]
[project.urls]
Home = "https://github.com/Chostakovitch/pychee"
Repository = "https://github.com/Chostakovitch/pychee"
Issues = "https://github.com/Chostakovitch/pychee/issues"
Documentation = "https://chostakovitch.github.io/pychee/index.html"