-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.33 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "embykeeper"
version = "5.0.14"
authors = [
{name = "jackzzs", email = "[email protected]"},
]
description = "Daily checkin automator for emby bots in telegram."
keywords = [
"emby",
"telegram",
"checkin",
"automator",
"bot",
"telegram bot",
"keep active",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Natural Language :: Chinese (Simplified)",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.8,<3.11"
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/emby-keeper/emby-keeper"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
embykeeper = "embykeeper.cli:app"
embykeeperweb = "embykeeperweb.app:cli"
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages]
find = {namespaces = false}
[tool.black]
line-length = 110