forked from geekscape/aiko_services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (65 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "aiko_services"
version = "0.4"
readme = "ReadMe.md"
description = "Distributed embedded service framework for A.I and robotics"
requires-python = ">=3.9.0,<=3.12.3"
authors = [
{name = "Andy Gelme", email = "[email protected]"}
]
keywords = [
"ai", "distributed", "embedded", "framework", "internet of things",
"machine learning", "media", "robotics"
]
licence-files = { paths = ["LICENCE"]}
# See: https://pypi.org/classifiers
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Distributed Computing"
]
dependencies = [
"asciimatics~=1.15.0",
"avro~=1.11.1",
"avro-validator~=1.2.1",
"click~=8.0",
"numpy~=1.26.4",
"paho-mqtt>=1.6.1,<2.0.0",
"Pillow~=10.2.0",
"pyperclip~=1.8.2",
"requests~=2.31.0",
"transitions~=0.9.0",
"wrapt~=1.16.0"
]
# [project.optional-dependencies]
# opencv-python = ["opencv-python~=4.4.0"]
# linux = ["PyAudio~=0.2.13"]
# macosx = ["PyAudio~=0.2.13"]
[project.scripts]
# aiko = "aiko_services.main.cli:main"
aiko_dashboard = "aiko_services.main.dashboard:main"
aiko_pipeline = "aiko_services.main.pipeline:main"
aiko_registrar = "aiko_services.main.registrar:main"
[tool.hatch]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
packages = ["src/aiko_services"]
exclude = ["src/aiko_services/archive"]
# https://hatch.pypa.io/latest/config/build/#build-targets
[tool.hatch.build.targets.wheel]
packages = ["src/aiko_services"]
[tool.hatch.envs.default]
pytest = "^8.0"
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"