-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (36 loc) · 1.04 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
[project]
name = "webtypy"
version = "0.1.8.dev2"
description = "This module contains the DOM types for the majority of the web APIs used in a web browser. These can be used by an IDE to give type hinting and completion during the development using DOM apis."
readme = "README.md"
requires-python = ">=3.6"
license = { file = "LICENCE" }
authors = [{ name = "Simone Giacomelli", email = "[email protected]" }]
keywords = []
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
[project.urls]
Homepage = "https://github.com/pyodide/webtypy"
[project.optional-dependencies]
dev = [
"pytest==8.3.4",
"widlparser==1.1.5",
"black==24.10.0"
]
pypi = [
"build==0.6.0.post1",
"twine==3.4.2",
"wheel==0.37.0",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["js-stubs"]
[tool.setuptools.package-data]
"*" = ["py.typed", "*.pyi"]
[tool.setuptools]
zip-safe = false
include-package-data = true
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"