-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
41 lines (37 loc) · 840 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
Setup file for fault
"""
from setuptools import setup
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
DESCRIPTION = """\
A Python package for testing hardware (part of the magma ecosystem)\
"""
setup(
name='fault',
version='4.0.1',
description=DESCRIPTION,
scripts=[],
packages=[
"fault",
"fault.tester",
],
install_requires=[
"astor",
"z3-solver",
"hwtypes",
"magma-lang>=3.0.0",
"pyyaml",
"scipy",
"numpy",
"DeCiDa",
"pysv"
],
license='BSD License',
url='https://github.com/leonardt/fault',
author='Leonard Truong',
author_email='[email protected]',
python_requires='>=3.6',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown"
)