-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (84 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
92 lines (84 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "awair"
version = "0.0.6"
description = "Awair API client and data collection system with AWS Lambda automation"
readme = "README.md"
license = "MIT"
authors = [
{name = "Ryan Williams", email = "ryan@runsascoded.com"}
]
maintainers = [
{name = "Ryan Williams", email = "ryan@runsascoded.com"}
]
keywords = ["awair", "air-quality", "iot", "sensors", "aws", "lambda", "data-collection"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"boto3>=1.34.0",
"click>=8.0.0",
"requests>=2.28.0",
"pandas>=1.5.0",
"pyarrow>=10.0.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/runsascoded/awair"
Documentation = "https://github.com/runsascoded/awair#readme"
Repository = "https://github.com/runsascoded/awair.git"
Issues = "https://github.com/runsascoded/awair/issues"
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
]
lambda = [
"aws-cdk-lib>=2.0.0",
"constructs>=10.0.0",
"utz>=0.20.0",
]
all = [
"ruff",
"pytest",
"aws-cdk-lib>=2.0.0",
"constructs>=10.0.0",
"utz>=0.20.0",
]
[project.scripts]
awair = "awair.cli.base:awair"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
awair = ["pyramid.yml"]
[tool.ruff]
line-length = 320
target-version = "py310"
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
ignore = [
"E501", # line too long (handled by formatter)
]