-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (28 loc) · 944 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
[project]
name = "docop-tasks"
version = "0.3.4"
authors = [
{name = "Petri Savolainen", email = "[email protected]"},
]
description = "Basic set of tasks for docop"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPLv3+"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
dependencies = ["playwright", "docop"]
[project.urls]
Homepage = "https://github.com/koodaamo/docop-tasks"
Repository = "https://github.com/koodaamo/docop-tasks"
[project.entry-points.'docop.tasks']
fetch_html = 'docop_tasks.webhtml.fetch_html'
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["docop_tasks", "docop_tasks.webhtml"]