-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.74 KB
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
64
65
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "html2text"
description = "Turn HTML into equivalent Markdown-structured text."
readme = "README.md"
authors = [{name = "Aaron Swartz", email = "me@aaronsw.com"}]
maintainers = [{name = "Alireza Savand", email = "alireza.savand@gmail.com"}]
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
urls = {Homepage = "https://github.com/Alir3z4/html2text/"}
requires-python = ">=3.9"
dynamic = ["version"]
[project.scripts]
html2text = "html2text.cli:main"
[tool.setuptools]
zip-safe = false
packages = ["html2text"]
platforms = ["OS Independent"]
include-package-data = false
[tool.setuptools.package-data]
html2text = ["py.typed"]
[tool.setuptools_scm]
write_to = "html2text/_version.py"
[tool.black]
line-length = 88
target-version = ['py313']
extend-exclude = '''
/(
html2text/_version.py
)
'''
[tool.flake8] # you will need Flake8-pyproject
max_line_length = "88"
extend-ignore = "E203"
[tool.isort]
profile = "black"
combine_as_imports = true
extend_skip = ["html2text/_version.py"]
[tool.mypy]
python_version = "3.9"