forked from FuzzyMistborn/python-eufy-security
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (47 loc) · 1.44 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
[build-system]
requires = ["setuptools >= 35.0.2", "wheel >= 0.29.0", "poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.isort]
combine_as_imports = true
default_section = "THIRDPARTY"
force_grid_wrap = 0
force_sort_within_sections = true
forced_separate = "tests"
include_trailing_comma = true
indent = " "
known_first_party = "examples,eufy_security,tests"
line_length = 88
multi_line_output = 3
not_skip = "__init__.py"
sections = "FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
use_parentheses = true
[tool.poetry]
name = "python-eufy-security"
version = "0.3.1"
description = "A Python library for Eufy Security devices"
readme = "README.md"
authors = ["Aaron Bach <[email protected]>"]
license = "MIT"
repository = "https://github.com/FuzzyMistborn/python-eufy-security"
packages = [
{ include = "eufy_security" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[tool.poetry.dependencies]
aiohttp = "3.6.1"
python = "^3.6.1"
[tool.poetry.dev-dependencies]
aresponses = "^1.1.1"
pre-commit = "^2.0.1"
pytest = "^5.3.5"
pytest-aiohttp = "^0.3.0"
pytest-cov = "^2.8.1"