/ pyproject.toml
pyproject.toml
1 # SPDX-FileCopyrightText: 2022 Alec Delaney, written for Adafruit Industries 2 # SPDX-FileCopyrightText: Copyright (c) 2023 Jose D. Montoya 3 # 4 # SPDX-License-Identifier: MIT 5 6 [build-system] 7 requires = ["setuptools", "wheel", "setuptools-scm"] 8 9 [project] 10 name = "circuitpython-uboxplot" 11 description = "calculates boxplot and creates its graphical representation" 12 version = "0.0.0+auto.0" 13 readme = "README.rst" 14 authors = [{ name = "Jose D. Montoya", email = "boxplot@mailmeto.mozmail.com" }] 15 urls = { Homepage = "https://github.com/jposada202020/CircuitPython_UBoxplot.git" } 16 keywords = [ 17 "circuitpython", 18 "boxplot", 19 "ulab", 20 "boxplot", 21 "graphics", 22 "community", 23 "statistical", 24 ] 25 license = { text = "MIT" } 26 classifiers = [ 27 "Intended Audience :: Developers", 28 "Topic :: Software Development :: Libraries", 29 "Topic :: Software Development :: Embedded Systems", 30 "Topic :: System :: Hardware", 31 "License :: OSI Approved :: MIT License", 32 "Programming Language :: Python :: 3", 33 ] 34 dynamic = ["dependencies", "optional-dependencies"] 35 36 [tool.setuptools] 37 py-modules = ["circuitpython_uboxplot"] 38 39 [tool.setuptools.dynamic] 40 dependencies = { file = ["requirements.txt"] } 41 optional-dependencies = { optional = { file = ["optional_requirements.txt"] } }