-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
72 lines (60 loc) · 1.79 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
[tool.poetry]
name = "py-nest-thermostat"
version = "0.0.8"
description = "A Python CLI Nest Thermostat controller and dashborading tool"
authors = ["Bastien Boutonnet <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
keywords = ["cli-app", "nest", "google", "iot"]
repository = "https://github.com/bastienboutonnet/py-nest-thermostat"
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.20.0"
questionary = "^1.10.0"
cleo = "^0.8.1"
pydantic = "^1.8.2"
rich = "^10.13.0"
SQLAlchemy = "^1.4.27"
sqlalchemy-cockroachdb = "^1.4.2"
pyaml = "^21.10.1"
psycopg2-binary = "^2.9.1"
[tool.poetry.dev-dependencies]
black = "^21.9b0"
pytest = "^6.2.5"
ipython = "^7.29.0"
pre-commit = "^2.15.0"
towncrier = "^21.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
nest="py_nest_thermostat.main:application.run"
[tool.towncrier]
package = "py_nest_thermostat"
package_dir = "py_nest_thermostat/"
filename = "CHANGELOG.md"
directory = "changelog/"
start_string = "# Changelog\n"
issue_format = "[#{issue}](https://github.com/bastienboutonnet/py-nest-thermostat/issues/{issue})"
underlines = ["", ""]
template = "changelog/.towncrier.template.md"
title_format = "## py-nest-thermostat [{version}] - {project_date}"
[[tool.towncrier.type]]
directory = "fix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Under The Hood/Misc"
showcontent = true