forked from tgingold-cern/cheby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 785 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
from setuptools import setup
# Import version
exec(open('proto/cheby/__init__.py').read())
setup(
name="cheby",
version=__version__,
packages=['cheby', 'cheby.wbgen', 'cheby.hdl', 'cheby.data'],
package_dir={'': 'proto'},
package_data={"cheby.data": ["*"]},
entry_points={
'console_scripts': [
'cheby = cheby.main:main',
'gena2cheby = cheby.gena2cheby:main',
'wbgen2cheby = cheby.wbgen2cheby:main'
]
},
author='CERN',
author_email='[email protected]',
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',
],
)