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