/ pyproject.toml
pyproject.toml
1 # SPDX-FileCopyrightText: 2020 Diego Elio Pettenò 2 # 3 # SPDX-License-Identifier: Unlicense 4 5 [build-system] 6 requires = [ 7 "setuptools", 8 "wheel", 9 "setuptools-scm", 10 ] 11 12 [project] 13 name = "circuitpython-jepler-udecimal" 14 description = "Reduced version of the decimal library for CircuitPython" 15 version = "0.0.0+auto.0" 16 readme = "README.rst" 17 authors = [ 18 {name = "Jeff Epler", email = "jepler@gmail.com"} 19 ] 20 urls = { Source = "https://github.com/jepler/Jepler_CircuitPython_udecimal", Documentation = "https://jepler-udecimal.readthedocs.io/en/latest/api/jepler_udecimal/index.html", Tracker = "https://github.com/jepler/Jepler_CircuitPython_udecimal/issues" } 21 # "Pull Requests" = "https://github.com/jepler/Jepler_CircuitPython_udecimal/pulls", 22 keywords = [ 23 "adafruit", 24 "blinka", 25 "circuitpython", 26 "micropython", 27 "udecimal", 28 "numeric", 29 "helper", 30 "arbitraryprecision", 31 "math", 32 ] 33 license = {text = "MIT"} 34 classifiers = [ 35 "Intended Audience :: Developers", 36 "Topic :: Software Development :: Libraries", 37 "Topic :: Software Development :: Embedded Systems", 38 "Topic :: System :: Hardware", 39 "License :: OSI Approved :: MIT License", 40 "License :: OSI Approved :: Python Software Foundation License", 41 "Programming Language :: Python :: 3", 42 ] 43 dynamic = ["dependencies", "optional-dependencies"] 44 45 46 [tool.setuptools] 47 packages=['jepler_udecimal'] 48 [tool.setuptools_scm] 49 write_to = "jepler_udecimal/__version__.py"