|
1 | 1 | # SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
|
2 |
| -# |
3 |
| -# SPDX-License-Identifier: Unlicense |
| 2 | +# SPDX-FileCopyrightText: 2022 Alec Delaney, written for Adafruit Industries |
4 | 3 |
|
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