-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
executable file
·25 lines (24 loc) · 1.03 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
from setuptools import setup, find_packages
setup(name='keras_sequential_ascii',
version='0.1.1',
install_requires=['keras'],
author="Piotr Migdał",
author_email="pmigdal@gmail.com",
url="https://github.com/stared/keras-sequential-ascii",
# download_url='https://github.com/stared/keras-sequential-ascii/tarball/v0.0.1',
description="ASCII summary for simple sequential models in Keras",
keywords=['keras', 'ascii'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Jupyter',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
packages=find_packages())