Skip to content

Commit 3e885cb

Browse files
authored
Merge pull request #37 from jepler/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents b9b4842 + 58389b8 commit 3e885cb

File tree

4 files changed

+48
-69
lines changed

4 files changed

+48
-69
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ docs/api
2020
circuitpython
2121
/*.exp
2222
/*.out
23+
*/__version__.py

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
repos:
66
- repo: https://github.com/psf/black
7-
rev: 23.7.0
7+
rev: 23.9.1
88
hooks:
99
- id: black
1010
- repo: https://github.com/fsfe/reuse-tool
@@ -18,7 +18,7 @@ repos:
1818
- id: end-of-file-fixer
1919
- id: trailing-whitespace
2020
- repo: https://github.com/pycqa/pylint
21-
rev: v2.17.1
21+
rev: v3.0.0
2222
hooks:
2323
- id: pylint
2424
name: lint (examples)

pyproject.toml

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,48 @@
22
#
33
# SPDX-License-Identifier: Unlicense
44

5-
[tool.black]
6-
target-version = ['py35']
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"

setup.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)