18 lines
458 B
TOML
18 lines
458 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "smartthings-windfree-poller"
|
|
version = "1.0.0"
|
|
description = "Small SmartThings device status poller for Python 3.11"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
smartthings-windfree-poller = "windfree_poller.main:main"
|
|
smartthings-windfree-oauth = "windfree_poller.oauth_server:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|