-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 784 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
descr = """A powerful light-weight inference framework for CNN.
The aim of planer is to provide efficient and adaptable inference environment for CNN model.
Also in order to enlarge the application scope,
we support ONNX format, which enables the converting of trained model within various DL frameworks.
"""
if __name__ == '__main__':
setup(name='planer',
version='0.34',
url='https://github.com/Image-Py/planer',
description='Powerful Light Artificial NEuRon',
long_description=descr,
author='Y.Dong, YXDragon',
author_email='yxdragon@imagepy.org',
license='BSD 3-clause',
packages=['planer'],
package_data={},
install_requires=[
'numpy'
],
)