-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (55 loc) · 1.51 KB
/
pyproject.toml
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
56
57
58
59
60
61
62
# SPDX-FileCopyrightText: 2022 Alec Delaney
#
# SPDX-License-Identifier: MIT
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools-scm",
]
[project]
name = "circlink"
description = "Tool for writing code locally and auto-pushing to CircuitPython boards"
version = "0.0.0+auto.0"
requires-python = ">=3.8.0"
readme = "README.rst"
authors = [
{name = "Alec Delaney", email = "[email protected]"}
]
urls = {Homepage = "https://github.com/tekktrik/circlink.git"}
keywords = [
"adafruit",
"circuitpython",
"tool",
"autosave",
"autopush",
"circlink",
"bridge",
]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Unix",
]
dynamic = ["dependencies", "optional-dependencies"]
[project.scripts]
circlink = "circlink.cli:app"
[tool.setuptools]
packages = ["circlink", "circlink.cli"]
include-package-data = true
[tool.setuptools.package-data]
templates = ["*.yaml"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements-dev.txt"]}}
[tool.ruff.lint]
select = ["D", "PL", "UP", "I"]
ignore = ["D213", "D203"]