-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
29 lines (26 loc) · 957 Bytes
/
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
from setuptools import setup
from pathlib import Path
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
# Get the long description from the README file
long_description = Path("README.md").read_text(encoding="utf-8")
setup(
name='notifly',
version='1.3.3',
description='Notification on the fly !',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/rexdivakar/Telegram-Notifly',
author='Divakar R, Sanchit Jain',
author_email='rexdivakar@hotmail.com , sanchitjain1996@gmail.com',
license='MIT',
classifiers=classifiers,
keywords='Bot Notification',
packages=['notifly'],
install_requires=['requests', 'numpy==1.19.3', 'matplotlib', 'slackclient', 'python-dotenv', 'psutil']
)