-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (36 loc) · 1014 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
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "types-PySide2"
readme = "README.md"
authors = [
{name = "Chad Dombrova"}
]
description = "The most accurate stubs for PySide2"
license = {text = "LGPL v2.1"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Typing :: Stubs Only",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/chadrik/types-pyside"
"Bug Tracker" = "https://github.com/chadrik/types-pyside/issues"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.setuptools.packages.find]
include = ["*-stubs"]
exclude = [
"tests*",
"pyside_stubgen.py",
"genstubs.sh",
"VERSION",
]
[tool.distutils.bdist_wheel]
universal = true