-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 808 Bytes
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dtypes"
authors = [
{ name = "Pierre LeMoine", email = "pypi@luben.se"},
]
description = "decorators and utils for ctypes"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
keywords = ["ctypes", "dtypes", "annotation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/DrInfiniteExplorer/dtypes"
Repository = "https://github.com/DrInfiniteExplorer/dtypes"
[tool.setuptools_scm]
local_scheme = 'no-local-version'
version_scheme = 'no-guess-dev'