Skip to content

Commit 12819ff

Browse files
committed
update pyproject.toml
1 parent 20da652 commit 12819ff

File tree

1 file changed

+48
-4
lines changed

1 file changed

+48
-4
lines changed

pyproject.toml

+48-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,50 @@
11
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
2-
#
3-
# SPDX-License-Identifier: Unlicense
2+
# SPDX-FileCopyrightText: 2022 Alec Delaney, written for Adafruit Industries
43

5-
[tool.black]
6-
target-version = ['py35']
4+
# SPDX-License-Identifier: MIT
5+
6+
[build-system]
7+
requires = [
8+
"setuptools",
9+
"wheel",
10+
"setuptools-scm",
11+
]
12+
13+
[project]
14+
name = "circuitpython-displayio-annotation"
15+
description = "A CircuitPython DisplayIO widget for annotating other widgets or freeform positions."
16+
version = "0.0.0+auto.0"
17+
readme = "README.rst"
18+
authors = [
19+
{name = "CircuitPython Organization"}
20+
]
21+
urls = {Homepage = "https://github.com/circuitpython/CircuitPython_Org_DisplayIO_Annotation"}
22+
keywords = [
23+
"adafruit",
24+
"blinka",
25+
"circuitpython",
26+
"micropython",
27+
"displayio",
28+
"displayio_annotation",
29+
"graphics",
30+
"widget"
31+
]
32+
license = {text = "MIT"}
33+
classifiers = [
34+
"Intended Audience :: Developers",
35+
"Topic :: Software Development :: Libraries",
36+
"Topic :: Software Development :: Embedded Systems",
37+
"Topic :: System :: Hardware",
38+
"License :: OSI Approved :: MIT License",
39+
"Programming Language :: Python :: 3",
40+
]
41+
dynamic = ["dependencies", "optional-dependencies"]
42+
43+
[tool.setuptools]
44+
# TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
45+
# CHANGE `py_modules = ['...']` TO `packages = ['...']`
46+
py-modules = ["displayio_annotation"]
47+
48+
[tool.setuptools.dynamic]
49+
dependencies = {file = ["requirements.txt"]}
50+
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}

0 commit comments

Comments
 (0)