forked from sbuschjaeger/fastinference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 994 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 994 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 find_packages, setup
setup(name='fastinference',
version='0.1',
description='Fastinference is a machine learning model compiler specifically targeted to small, embedded systems and FPGAs.',
long_description='Fastinference is a machine learning model compiler specifically targeted to small, embedded systems and FPGAs.',
url='https://github.com/sbuschjaeger/fastinference',
author=u'Sebastian Buschjäger',
author_email='{sebastian.buschjaeger}@tu-dortmund.de',
license='MIT',
#packages=['fastinference'],
#scripts=["fastinference/fastinference.py"],
zip_safe=False,
packages=find_packages(),#include=['fastinference', 'fastinference.models', 'fastinference.models.nn'])
include_package_data = True,
package_data = {'': ['*.j2'],},
install_requires = [
"jinja2",
"onnx",
"onnxruntime",
"PyPruning @ git+https://git@github.com/sbuschjaeger/PyPruning.git"
]
)