forked from Verified-Intelligence/auto_LiRPA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 637 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='auto_LiRPA',
version='0.1',
description='Automatic Linear Relaxation based Perturbation Analysis (LiRPA) for general computational graphs',
url='https://github.com/KaidiXu/auto_LiRPA',
author='Kaidi Xu, Zhouxing Shi, Huan Zhang',
author_email='xu.kaid@husky.neu.edu, zhouxingshichn@gmail.com, huan@huan-zhang.com',
packages=['auto_LiRPA'],
install_requires=[
'torch>=1.4',
'numpy>=1.16',
'packaging>=20.0',
'pytest>=5.0',
'appdirs>=1.4',
'oslo.concurrency>=4.2',
],
platforms=['any'],
license='BSD',
)