-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 849 Bytes
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
[project]
name = "fink-watch"
version = "0.1.0"
requires-python = ">= 3.9"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Julien Peloton", email = "peloton@ijclab.in2p3.fr"},
]
maintainers = [
{name = "Julien Peloton", email = "peloton@ijclab.in2p3.fr"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
dependencies = [
"spidev",
"numpy",
"pillow>=10.4.0",
"gpiozero",
"rpi-gpio",
"tzdata",
"confluent_kafka",
]
[tool.setuptools.packages.find]
include = ["fink_watch"]
[project.optional-dependencies]
codequality = [
'ruff'
]
[project.urls]
Homepage = "https://github.com/JulienPeloton/fink-watch"
Repository = "https://github.com/JulienPeloton/fink-watch.git"