-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.46 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
56
57
58
[build-system]
requires = ["setuptools>=80.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "circuitpython-sync"
authors = [
{ name = "Dmytro Yaroshenko" }
]
version = "0.1.0"
description = "CircuitPython Fetch/Sync Tool"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"requests>=2.32.4",
"websocket-client>=1.8.0",
"websockets>=15.0.1",
]
license = { file = "LICENSE" }
keywords = ["circuitpython", "workflow", "web", "api"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
"Homepage" = "https://github.com/hbmartin/circuitpython-sync"
"Bug Reports" = "https://github.com/hbmartin/circuitpython-sync/issues"
"Source" = "https://github.com/hbmartin/circuitpython-sync"
[project.scripts]
cp-sync = "circuitpython_sync.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
include = [
"circuitpython_sync*",
]
[dependency-groups]
dev = [
"ruff>=0.12.8",
]
[tool.ruff]
include = [
"pyproject.toml",
"src/**/*.py",
]