-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 2.06 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
"""Setup for the intimations package."""
from setuptools import setup,find_packages
with open('README.md','r') as f:
README = f.read()
setup(
author="ABHIJITH BOPPE",
author_email="[email protected]",
name='intimations',
license="MIT",
description='''
Description: push notifications with different icons, beep sound with different types of sound, telegram message intimation (requires your botAPI and ChatID), command line''',
version='v1.0',
long_description_content_type='text/markdown',
long_description=README,
keywords=['intimation', 'intimations', 'desktop notifications', 'windows notifications', 'cloud notification', 'command line notifications', 'process notifications', 'process intimation'
'intimate after done', 'cross platform notifications', 'buzzer sound notifications', 'message from cloud', 'cloud to mobile', 'mobile notification after a process is done',
'system to mobile', 'laptop to mobile', 'cloud process intimation', 'sound intimations', 'buzzer intimations', 'intimate about process', 'inform after done', 'inform after complete', 'text when finish',
'message after done', 'whatsapp on done'],
url='https://github.com/AbhijithAJ/intimations',
download_url='https://github.com/AbhijithAJ/intimations/archive/refs/tags/v1.0.tar.gz',
packages=['intimations'],
package_data={'intimations': ['Sounds/*.wav','Icons/*.ico']},
python_requires=">=3.2",
install_requires=['playsound==1.2.2', 'win10toast==0.9 ; platform_system=="Windows"'],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: Communications',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
],
)