-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.5 KB
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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "android-notify"
version = "1.61.0"
description = "A Python package that simplifies creating Android notifications in Kivy and Flet apps."
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Fabian", email = "fector101@yahoo.com" }
]
license = "MIT"
requires-python = ">=3.6"
dependencies = [
"pyjnius>=1.4.2"
]
keywords = [
"android",
"notifications",
"kivy",
"mobile",
"post-notifications",
"pyjnius",
"android-notifications",
"kivy-notifications",
"python-android",
"mobile-development",
"push-notifications",
"mobile-app",
"kivy-application"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Android",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://android-notify.vercel.app"
Documentation = "https://android-notify.vercel.app/"
Source = "https://github.com/fector101/android_notify"
Tracker = "https://github.com/fector101/android_notify/issues"
Funding = "https://www.buymeacoffee.com/fector101"
[project.optional-dependencies]
dev = [
"kivy>=2.0.0"
]
[tool.setuptools.package-data]
"android_notify" = ["fallback-icons/*.png"]
[project.scripts]
android-notify = "android_notify.__main__:main"
[tool.setuptools.packages.find]
where = ["."]