-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
35 lines (29 loc) · 1.02 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
[project]
name = "wat-inspector"
description = "Deep inspection of Python objects"
license = {text = "MIT"}
authors = [
{ name = "igrek51", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/igrek51/wat"
[build-system]
requires = ["setuptools", "build", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "wat.version.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["wat*"] # package names should match these glob patterns (["*"] by default)
exclude = ["wat.inspection.insta.*"] # exclude packages matching these glob patterns
namespaces = false # to disable scanning PEP 420 namespaces (true by default)