-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 790 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 790 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
from setuptools import setup
setup(
name='mantle',
version='2.0.21',
url='https://github.com/phanrahan/mantle',
license='MIT',
author='Leonard Truong',
maintainer='Lenny Truong',
maintainer_email='lenny@cs.stanford.edu',
description='The magma standard library',
packages=[
"mantle",
"mantle.common",
"mantle.coreir",
"mantle.lattice",
"mantle.lattice.mantle40",
"mantle.lattice.ice40",
"mantle.verilog",
"mantle.primitives",
"mantle.util",
"mantle.util.lfsr",
"mantle.util.sort",
"mantle.util.compressor",
"mantle.util.lhca",
],
install_requires=[
"six",
"fault",
"magma-lang",
],
python_requires='>=3.6'
)