-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# SPDX-FileCopyrightText: 2022 Alec Delaney
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm",
]
[project]
name = "circuitpython-csv"
description = "CircuitPython helper library for working with CSV files"
version = "0.0.0+auto.0"
readme = "README.rst"
authors = [
{name = "Alec Delaney", email = "tekktrik@gmail.com"}
]
keywords = [
"adafruit",
"csv",
"data",
"files",
"embedded",
"micropython",
"circuitpython",
]
license = "MIT AND PSF-2.0 AND 0BSD"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"Topic :: File Formats",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: MicroPython",
]
dynamic = ["dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://github.com/tekktrik/CircuitPython_CSV"
Repository = "https://github.com/tekktrik/CircuitPython_CSV"
Doumentation = "https://circuitpython-csv.readthedocs.io"
[tool.setuptools]
py-modules = ["circuitpython_csv"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {optional = {file = ["optional_requirements.txt"]}}
[tool.ruff.lint]
select = ["D", "PL", "I"]
ignore = ["D213", "D203"]