mirror of
https://github.com/wassname/keras-contrib.git
synced 2026-06-27 16:10:11 +08:00
14 lines
392 B
Python
14 lines
392 B
Python
from setuptools import setup
|
|
from setuptools import find_packages
|
|
|
|
|
|
setup(name='keras_contrib',
|
|
version='1.2.1',
|
|
description='Keras community contributions',
|
|
author='Fariz Rahman',
|
|
author_email='farizrahman4u@gmail.com',
|
|
url='https://github.com/farizrahman4u/keras-contrib',
|
|
license='MIT',
|
|
install_requires=['keras'],
|
|
packages=find_packages())
|