-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.58 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
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"setuptools>=77",
"wheel",
"setuptools-scm",
]
[project]
name = "circuitpython-build-tools"
requires-python = ">=3.10"
description = "CircuitPython library build tools"
readme = "README.md"
authors = [
{name = "Scott Shawcroft", email = "scott@adafruit.com"}
]
keywords = [
"circuitpython",
]
license = "MIT"
classifiers = [
# https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "dependencies"]
[project.scripts]
circuitpython-build-bundles = "circuitpython_build_tools.scripts.build_bundles:build_bundles"
circuitpython-mpy-cross = "circuitpython_build_tools.scripts.circuitpython_mpy_cross:main"
[project.urls]
Homepage = "https://www.adafruit.com/"
Source = "https://github.com/adafruit/circuitpython-build-tools"
Tracker = "https://github.com/adafruit/circuitpython-build-tools/issues"
[tool.setuptools]
zip-safe = false
packages = [
"circuitpython_build_tools",
"circuitpython_build_tools.scripts",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
# It would be nice to include the commit hash in the version, but that
# can't be done in a PEP 440-compatible way.
version_scheme = "no-guess-dev"
# Test PyPI does not support local versions.
local_scheme = "no-local-version"
fallback_version = "0.0.0"