forked from tallurips91/FINN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 752 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 752 Bytes
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
""" """
__author__="Ken O'Brien"
__email__="kennetho@xilinx.com"
from setuptools import setup
setup(
name = 'FINN',
version = '0.0.dev1',
description ='A Framework for Fast, Scalable Binarized Neural Network Inference',
long_description='',
url = 'https://gitenterprise.xilinx.com/XRLabs/FINN',
author = 'Xilinx, Inc.',
author_email = 'kennetho@xilinx.com',
scripts = ['FINN/bin/finn'],
test_suite = 'nose.collector',
tests_require = ['nose'],
license = '',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
],
keywords = '',
packages = ['FINN'],
install_requires = ['']
)