-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
31 lines (26 loc) · 1.1 KB
/
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
31
from setuptools import setup, find_packages
import os
def read(filename):
# return open(os.path.join(os.path.dirname(__file__), filename), encoding='utf8').read()
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name='veriloggen',
version=read('veriloggen/VERSION').splitlines()[0],
description='A Mixed-Paradigm Hardware Construction Framework',
long_description=read('README.md'),
long_description_content_type="text/markdown",
keywords='FPGA, Verilog HDL, High-Level Synthesis',
author='Shinya Takamaeda-Yamazaki',
license="Apache License 2.0",
url='https://github.com/PyHDI/veriloggen',
packages=find_packages(),
package_data={'veriloggen': ['VERSION'],
'veriloggen.types.template': ['*.*'],
'veriloggen.simulation': ['*.cpp'],
},
install_requires=['pyverilog>=1.3.0',
'numpy>=1.17'],
extras_require={
'test': ['pytest>=3.8.1', 'pytest-pythonpath>=0.7.3'],
'graph': ['pygraphviz>=1.3.1'],
},
)