-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
52 lines (46 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "plexus-python"
version = "0.4.5"
description = "Thin Python SDK for Plexus — send telemetry in one line"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [
{ name = "Plexus", email = "hello@plexus.dev" }
]
keywords = ["telemetry", "iot", "hardware", "observability", "fleet", "monitoring"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware",
]
dependencies = [
"requests>=2.28.0",
"websocket-client>=1.7",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "ruff", "websockets>=12"]
[project.scripts]
plexus = "plexus.cli:main"
[project.urls]
Homepage = "https://plexus.dev"
Documentation = "https://docs.plexus.dev"
Repository = "https://github.com/plexus-oss/plexus-python"
Issues = "https://github.com/plexus-oss/plexus-python/issues"
[tool.hatch.build.targets.wheel]
packages = ["plexus"]
[tool.ruff]
line-length = 100
target-version = "py38"