-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (51 loc) · 1.69 KB
/
setup.py
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
""" For Packing """
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as readme_data:
long_description = readme_data.read()
setup(
name="android-notify",
version="1.59",
author="Fabian",
author_email='[email protected]',
description="A Python package that simplifies creating Android notifications in Kivy apps.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://android-notify.vercel.app",
packages=find_packages(),
install_requires=[
"kivy>=2.0.0",
"pyjnius>=1.4.2"
],
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Android",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=[
"android",
"notifications",
"kivy",
"mobile",
"post-notifications",
"pyjnius",
"android-notifications",
"kivy-notifications",
"python-android",
"mobile-development",
'push-notifications',
'mobile-app',
'kivy-application'
],
project_urls={
# "Documentation": "https://github.com./fector101/android-notify/wiki",
"Documentation": "https://android-notify.vercel.app/getting-started",
"Source": "https://github.com./fector101/android-notify",
"Tracker": "https://github.com./fector101/android-notify/issues",
"Funding": "https://www.buymeacoffee.com/fector101"
},
license="MIT"
)