-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.69 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.69 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
import setuptools
setuptools.setup(name='modelutils',
version='0.1.2',
description='Utility scripts for various deep learning models',
url='https://github.com/shonohs/modelutils',
license='MIT',
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'Pillow',
],
extras_require={'all': ['coremltools', 'onnx', 'onnxruntime', 'tensorflow-cpu']},
entry_points={
'console_scripts': [
'mudump=modelutils.commands.dump:main',
'muload=modelutils.commands.load:main',
'musummarize=modelutils.commands.summarize:main',
'murun=modelutils.commands.run:main',
'mugetdata=modelutils.commands.get_data:main',
'musetdata=modelutils.commands.set_data:main',
'nparray=modelutils.commands.array:main',
'npimage=modelutils.commands.image:main',
'npzeros=modelutils.commands.zeros:main',
'npdiff=modelutils.commands.diff:main',
'npjson=modelutils.commands.json:main',
'npget=modelutils.commands.get:main',
'npmax=modelutils.commands.max:main',
'npprint=modelutils.commands.print:main',
'nprand=modelutils.commands.rand:main',
'nptranspose=modelutils.commands.transpose:main'
]
})