-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 782 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name= 'micro5sim',
version= '0.1',
description= 'ISS for micro5 RISC-V core',
url= 'http://github.com/jaruiz/micro5sim',
author= 'Jose A. Ruiz',
author_email= 'jose.a.ruiz.dominguez.eu@gmail.com',
license= 'Apache 2.0',
packages= ['micro5sim'],
package_dir= {'micro5sim': 'micro5sim'},
entry_points= {
'console_scripts': [
'micro5sim=micro5sim.cli:main'
],
},
install_requires= ["pyelftools"],
zip_safe= True
)