/ 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-Candlesticks" 14 description = "CandleSticks for CircuitPython" 15 version = "0.0.0+auto.0" 16 readme = "README.rst" 17 authors = [ 18 {name = "JDM", email = "jdm@mozmail.com"} 19 ] 20 urls = {Homepage = "https://github.com/jposada202020/CircuitPython_ArrowLine.git"} 21 keywords = [ 22 "hardware", 23 "micropython", 24 "circuitpython", 25 "stock", 26 "market", 27 "candlesticks" 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 = ["circuitpython_Candlesticks"] 42 43 [tool.setuptools.dynamic] 44 dependencies = {file = ["requirements.txt"]} 45 optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}