49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
TOML
# SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
|
|
#
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
"wheel",
|
|
"setuptools-scm",
|
|
]
|
|
|
|
[project]
|
|
name = "circuitpython-jepler-udecimal"
|
|
description = "Reduced version of the decimal library for CircuitPython"
|
|
version = "0.0.0+auto.0"
|
|
readme = "README.rst"
|
|
authors = [
|
|
{name = "Jeff Epler", email = "jepler@gmail.com"}
|
|
]
|
|
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" }
|
|
# "Pull Requests" = "https://github.com/jepler/Jepler_CircuitPython_udecimal/pulls",
|
|
keywords = [
|
|
"adafruit",
|
|
"blinka",
|
|
"circuitpython",
|
|
"micropython",
|
|
"udecimal",
|
|
"numeric",
|
|
"helper",
|
|
"arbitraryprecision",
|
|
"math",
|
|
]
|
|
license = {text = "MIT"}
|
|
classifiers = [
|
|
"Intended Audience :: Developers",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: Embedded Systems",
|
|
"Topic :: System :: Hardware",
|
|
"License :: OSI Approved :: MIT License",
|
|
"License :: OSI Approved :: Python Software Foundation License",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dynamic = ["dependencies", "optional-dependencies"]
|
|
|
|
|
|
[tool.setuptools]
|
|
packages=['jepler_udecimal']
|
|
[tool.setuptools_scm]
|
|
write_to = "jepler_udecimal/__version__.py"
|