This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
forked from lxml/lxml-stubs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (65 loc) · 1.56 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
64
65
66
67
68
69
70
71
[build-system]
requires = ['pdm-pep517 >= 0.12']
build-backend = 'pdm.pep517.api'
[project]
name = 'lxml-stubs'
dynamic = ['version']
description = 'Type annotations for lxml'
readme = 'README.md'
requires-python = '>=3.8'
license-expression = 'Apache-2.0'
dependencies = [ # version dependency uncertain
'lxml',
]
keywords = ['lxml', 'typing', 'stubs']
authors = [
{ name = 'Jelle Zijlstra', email = '[email protected]' },
{ name = 'Michael van Tellingen', email = '[email protected]' },
{ name = 'Stefan Behnel', email = '[email protected]' },
]
maintainers = [
{ name = 'Abel Cheung', email = '[email protected]' },
]
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Typing :: Stubs Only',
]
[project.urls]
homepage = 'https://github.com/abelcheung/lxml-stubs'
repository = 'https://github.com/abelcheung/lxml-stubs'
[tool.pdm]
version = {use_scm = true}
includes = [
'lxml-stubs/',
'py.typed',
]
excludes = [
'**/*.bak',
]
source-includes = [
'test-data/',
'LICENSE',
'README.md',
'tox.ini',
]
[tool.pytest.ini_options]
testpaths = [
'test-data',
]
[tool.isort]
profile = 'black'
combine_as_imports = true
[tool.pyright]
include = ['lxml-stubs']
exclude = [
'**/node_modules',
'**/__pycache__',
'/.tox',
]
reportPrivateUsage = false