10 строки
337 B
Python
10 строки
337 B
Python
from distutils.core import setup
|
|
from image_similarity import VERSION, LICENSE
|
|
|
|
setup(
|
|
name='image-similarity-sql-python',
|
|
version=VERSION,
|
|
packages=['image_similarity'],
|
|
url='https://github.com/Azure/Azure-MachineLearning-DataScience-Private/tree/master/Misc/SQL_RRE_Templates/ImageSimilarity_SQL',
|
|
license=LICENSE
|
|
) |