-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.42 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.42 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
32
33
34
35
36
from setuptools import setup
from setuptools import find_packages
long_description = '''
A set of tools for implementing triplet networks in tensorflow/keras. The toolbox includes a set
of loss functions that plug in to tensorflow/keras neural network seamlessly, transforming
your model into a one-short learning triplet model
'''
setup(name='triplet-tools',
use_scm_version=True,
description='A toolbox for creating and training triplet networks in tensorflow',
long_description=long_description,
author='Maxim Scherbak',
author_email='maxim.scherbak@gmail.com',
url='https://github.com/maxsch3/triplet-toolbox',
download_url='https://github.com/maxsch3/triplet-toolbox',
license='MIT',
setup_requires=['setuptools_scm'],
install_requires=['tensorflow>=1.14.0'],
extras_require={
'tests': ['pytest',
'markdown'],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())