forked from techytushar/tf_notification_callback
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.05 KB
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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(name='keras_webhook_callback',
description='Receive notifications about your model training on your messaging app!',
long_description=long_description,
long_description_content_type="text/markdown",
version='0.2.3',
url='https://github.com/AlexBella365/keras_webhook_callback',
author='Alex Bella',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
],
keywords='api python keras training callback',
install_requires=[
'python-telegram-bot>=12',
'matplotlib>=3',
'keras>=2.2',
'requests>=2',
'humanize>=2'
],
packages=setuptools.find_packages(),
python_requires='>=3.6'
)