-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 1.03 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
[project]
name = "docop-tasks-restricted"
version = "0.3.3"
authors = [
{name = "Petri Savolainen", email = "[email protected]"},
]
description = "Tasks for docop that have more restrictive open source licensing"
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 = ["trafilatura>=1.6.4"]
[project.urls]
Homepage = "https://github.com/koodaamo/docop-tasks-restricted"
Repository = "https://github.com/koodaamo/docop-tasks-restricted"
[project.entry-points.'docop.tasks.restricted']
html2txt = 'docop_tasks_restricted.webhtml.html2text'
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["docop_tasks_restricted", "docop_tasks_restricted.webhtml"]