forked from leonardt/fault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 810 Bytes
/
setup.py
File metadata and controls
40 lines (36 loc) · 810 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
30
31
32
33
34
35
36
37
38
39
40
"""
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='2.0.19',
description=DESCRIPTION,
scripts=[],
packages=[
"fault",
],
install_requires=[
"astor",
"coreir",
"cosa",
"z3-solver",
"hwtypes",
"magma-lang",
"pyyaml",
"scipy",
"numpy"
],
license='BSD License',
url='https://github.com/leonardt/fault',
author='Leonard Truong',
author_email='lenny@cs.stanford.edu',
python_requires='>=3.6',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown"
)