generated from ZhaoQi99/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (54 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = [
"setuptools >= 42",
]
build-backend = "setuptools.build_meta"
[project]
name = "pagesaver"
authors = [{name = "Qi Zhao", email = "[email protected]"}]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
description = "Archive your web page."
keywords = ["archiving", "web archiving", "playwright", "backup"]
requires-python = ">=3.8"
dependencies = [
"django",
"django-ninja",
"click",
"requests",
"hypercorn",
"playwright",
]
readme = "README.md"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/ZhaoQi99/PageSaver"
Changelog = "https://github.com/ZhaoQi99/PageSaver/releases"
Source = "https://github.com/ZhaoQi99/PageSaver"
"Issue Tracker" = "https://github.com/ZhaoQi99/PageSaver/issues"
# "Documentation" = "https://github.com/ZhaoQi99/PageSaver"
# "Trove classifiers" for PyPI (https://pypi.org/classifiers/).
[project.scripts]
pagesaver = "pagesaver.cli:main"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "pagesaver.__version__"}
[tool.setuptools.packages.find]
exclude = [
"tests",
"*.tests.*",
]
namespaces = false
[tool.black]
line-length = "88"
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = "88"
extend-ignore = "E203,E701,E501"