-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
51 lines (44 loc) · 1.39 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
long_description=\
"""================================
CoSA: CoreIR Symbolic Analyzer
================================
CoSA is an SMT-based symbolic model checker for hardware design.
Supported Input Formats
=======================
* CoreIR (https://github.com/rdaly525/coreir)
* Verilog
* SystemVerilog
* Symbolic Transition System
* Explicit Transition System
* BTOR2 (https://github.com/Boolector/btor2tools)
Supported Verifications
=======================
* Invariant Properties
* LTL Properties
* Proving capabilities
* Equivalence Checking
* Parametric (Invariant) Model Checking
* Fault Analysis
* Automated Lemma Extraction
CoSA relies on PySMT (http://www.pysmt.org), which is a solver
agnostic library to interface with SMT solvers.
For more information visit http://github.com/cristian-mattarei/CoSA
"""
setup(name='CoSA',
version='0.4',
description='CoreIR Symbolic Analyzer',
long_description=long_description,
url='http://github.com/cristian-mattarei/CoSA',
author='Cristian Mattarei',
author_email='[email protected]',
license='BSD',
packages = find_packages(),
include_package_data = True,
install_requires=["six","pyparsing","pysmt","coreir","hwtypes"],
entry_points={
'console_scripts': [
'CoSA = cosa.shell:main'
],
},
zip_safe=True)