-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 855 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 855 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
from setuptools import setup
setup(
name="cheby",
version="0.2",
packages=['cheby', 'cheby.wbgen'],
package_dir={'': 'proto'},
entry_points={
'console_scripts': [
'cheby = cheby.main:main',
'gena2cheby = cheby.gena2cheby:main',
'wbgen2cheby = cheby.wbgen2cheby:main'
]
},
author='CERN',
author_email='cheby-codegen@cern.ch',
description='Generate HDL/C/Doc from HW/SW interface description',
license='GPLv2+',
keywords="VHDL HDL registers driver",
url='https://gitlab.cern.ch/cohtdrivers/cheby',
install_requires=[
'pyyaml',
'hdlparse'
],
dependency_links=[
"https://github.com/lerwys/hdlparse.git@master#egg=hdlparse-master"
"git+ssh://git@github.com/lerwys/hdlparse.git@master#egg=hdlparse-master"
]
)