16 lines
363 B
Python
16 lines
363 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='siamese',
|
||
|
version='0.1',
|
||
|
packages=[''],
|
||
|
url='https://github.com/aspamers/siamese',
|
||
|
license='MIT',
|
||
|
author='Abram Spamers',
|
||
|
author_email='aspamers@gmail.com',
|
||
|
install_requires=[
|
||
|
'keras', 'numpy',
|
||
|
],
|
||
|
description='An easy to use Keras Siamese Neural Network implementation'
|
||
|
)
|