-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (51 loc) · 1.81 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.41",
author="Fabian",
author_email='fector101@yahoo.com',
description="A Python package that simpilfies creating Android notifications in Kivy apps.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fector101/android-notify",
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/", # Replace with your documentation URL
# "Documentation": "https://github.com/fector101/android-notify/wiki", # Replace with your documentation URL
"Source": "https://github.com/fector101/android-notify",
"Tracker": "https://github.com/fector101/android-notify/issues",
"Funding": "https://www.buymeacoffee.com/fector101" # Replace with your Buy Me a Coffee link
},
license="MIT"
)