-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.48 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
[tool.poetry]
name = "satella"
version = "2.0.0"
description = "Automated anime characters data gatherer for Internet of Things."
authors = ["lauslim12 <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/lauslim12/Satella"
repository = "https://github.com/lauslim12/Satella"
documentation = "https://github.com/lauslim12/Satella"
keywords = [
"asyncio",
"automation",
"embedded-systems",
"internet-of-things",
"raspberry-pi",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.1"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
pylint = "^2.8.3"
isort = "^5.8.0"
mypy = "^0.902"
[tool.isort]
profile = "black"
line_length = "88"
multi_line_output = "3"
include_trailing_comma = "True"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"