forked from ctypesgen/ctypesgen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (45 loc) · 1.59 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=7.1"]
build-backend = "setuptools.build_meta"
[project]
name = "ctypesgen"
description = "Python wrapper generator for ctypes"
license = { text = "BSD-2-Clause" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Pre-processors",
"Topic :: Software Development :: Build Tools",
"Environment :: Console",
]
dynamic = ["readme", "version"]
requires-python = ">=3.7"
[project.urls]
Homepage = "https://github.com/ctypesgen/ctypesgen"
Repository = "https://github.com/ctypesgen/ctypesgen.git"
Issues = "https://github.com/ctypesgen/ctypesgen/issues"
Changelog = "https://github.com/ctypesgen/ctypesgen/blob/master/CHANGELOG.md"
[project.scripts]
ctypesgen = "ctypesgen.__main__:main"
[tool.setuptools]
package-dir = {}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["ctypesgen", "ctypesgen.*"]
namespaces = false
[tool.setuptools.dynamic.readme]
file = ["README.md", "LICENSE", "docs/CHANGELOG.md"]
content-type = "text/markdown"
[tool.setuptools_scm]
write_to = "src/ctypesgen/VERSION"
write_to_template = "{version}"