forked from oval-group/oval-bab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 821 Bytes
/
setup.py
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
import sys
from os import path
from setuptools import setup, find_packages
if sys.version_info < (3,6):
sys.exit("Sorry, only Python >= 3.6 is supported")
here = path.abspath(path.dirname(__file__))
setup(
name='oval-bab',
version='0.0.1',
description='OVAL Branch and Bound framework for neural network verification',
author='OVAL group, University of Oxford',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
install_requires=['sh', 'numpy', 'torch', 'torchvision', 'scipy', 'pandas', 'onnx', 'onnxruntime'],
extras_require={
'dev': ['ipython', 'ipdb']
},
)