зеркало из https://github.com/microsoft/EdgeML.git
12 строки
363 B
Python
12 строки
363 B
Python
import setuptools #enables develop
|
|
|
|
setuptools.setup(
|
|
name='edgeml',
|
|
version='0.2.1',
|
|
description='machine learning algorithms for edge devices developed at Microsoft Research India.',
|
|
packages=setuptools.find_packages(),
|
|
license='MIT License',
|
|
long_description=open('License.txt').read(),
|
|
url='https://github.com/Microsoft/EdgeML',
|
|
)
|