-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (42 loc) · 1.31 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
[build-system]
requires = ["ksp-builder", "setuptools>=65.0.0", "wheel>=0.36.0"]
build-backend = "ksp_builder"
[project]
name = "pyonesignal"
version = "0.1.0"
description = "A complete Pyjnius-based OneSignal Android SDK v5 wrapper for Kivy apps."
readme = "README.md"
requires-python = ">=3.13"
license = { text = "MIT" }
authors = [
{ name = "Kartavya Shukla", email = "novfensec@protonmail.com" }
]
keywords = ["kivy", "android", "onesignal", "push-notifications", "pyjnius"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Android",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# Core dependencies required for PyOneSignal to run
dependencies = [
"pyjnius>=1.6.0",
]
[project.urls]
Repository = "https://github.com/KivyPackages/PyOneSignal"
Issues = "https://github.com/KivyPackages/PyOneSignal/issues"
[tool.uv.build-backend]
module-name = "pyonesignal"
[tool.pyjnius]
java-paths = ["src/java/"]
[tool.uv.sources]
ksp-builder = { git = "https://github.com/kivy-school/ksp-builder" }
[tool.kivy-school.android]
gradle_dependencies = [
"com.onesignal:OneSignal:[5.6.1, 5.9.99]",
]
permissions = [
"INTERNET", "POST_NOTIFICATIONS",
]