forked from huggingface/knockknock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.15 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
from setuptools import setup, find_packages
from io import open
setup(
name='knockknock',
version='0.1.9',
description='Be notified when your training is complete with only two additional lines of code',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='http://github.com/huggingface/knockknock',
author='Victor SANH',
author_email='victorsanh@gmail.com',
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'knockknock = knockknock.__main__:main'
]
},
zip_safe=False,
python_requires='>=3.6',
install_requires=[
'yagmail>=0.11.214',
'keyring',
'matrix_client',
'python-telegram-bot',
'requests',
'twilio',
'win10toast==0.9'
],
classifiers=[
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)