-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 2.39 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = [
"setuptools",
"setuptools-git-versioning>=2.0,<3",
]
# Use an in-tree build backend, to customise the wheels we generate
build-backend = "backend"
backend-path = [
"ci/_custom_build",
]
[project]
name = "wasmtime"
dynamic = [
"version",
]
description = "A WebAssembly runtime powered by Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
authors = [
{name="The Wasmtime Project Developers", email="hello@bytecodealliance.org"},
]
requires-python=">=3.9"
dependencies = [
]
classifiers=[
"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.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Interpreters",
]
[project.optional-dependencies]
testing = [
"coverage",
"pycparser",
"pytest-mypy",
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/bytecodealliance/wasmtime-py"
"Bug Tracker" = "https://github.com/bytecodealliance/wasmtime-py/issues"
"Documentation" = "https://bytecodealliance.github.io/wasmtime-py/"
"Source Code" = "https://github.com/bytecodealliance/wasmtime-py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = [
"wasmtime",
"wasmtime.*",
]
[tool.setuptools.package-data]
# NB Coordinate changes here with .gitignore
"wasmtime" = [
# Wasmtime shared library. Downloaded by ci/download-wasmtime.py
"*-*/*.dll",
"*-*/*.dylib",
"*-*/*.so",
"py.typed",
]
[tool.setuptools-git-versioning]
# https://setuptools-git-versioning.readthedocs.io/en/stable/options/index.html
enabled = true
version_file = "VERSION"
count_commits_from_version_file = true
# Version for distributions built from an untagged commit.
# Version "1.0.0.dev4" is a treated as a pre-release of Version "1.0.0".
# {tag}: Version under development, read from `version_file`
# {ccount}: Count of commits since `version_file` was last changed
dev_template = "{tag}.dev{ccount}"