|
7 | 7 | m = re.search(r'(\d+\.\d+\.\d+(-.+)?)', utils.version.VERSION) |
8 | 8 | version = m.group(1) if m is not None else '0.0.0' |
9 | 9 |
|
| 10 | + |
10 | 11 | def read(filename): |
11 | 12 | return open(os.path.join(os.path.dirname(__file__), filename)).read() |
12 | 13 |
|
| 14 | + |
13 | 15 | setup(name='veriloggen', |
14 | 16 | version=version, |
15 | 17 | description='A library for constructing a Verilog HDL source code in Python', |
16 | 18 | long_description=read('README.rst'), |
17 | | - keywords = 'FPGA, Verilog HDL', |
| 19 | + keywords='FPGA, Verilog HDL, High-Level Synthesis', |
18 | 20 | author='Shinya Takamaeda-Yamazaki', |
19 | 21 | license="Apache License 2.0", |
20 | 22 | url='https://github.com/PyHDI/veriloggen', |
21 | 23 | packages=find_packages(), |
22 | 24 | #package_data={ 'path' : ['*.*'], }, |
23 | | - install_requires=[ 'pyverilog>=1.1.1', 'ipgen>=0.3.0', 'Jinja2>=2.8' ], |
| 25 | + install_requires=['pyverilog>=1.1.1', 'ipgen>=0.3.0', 'Jinja2>=2.8'], |
24 | 26 | extras_require={ |
25 | | - 'graph' : [ 'pygraphviz>=1.3.1' ], |
26 | | - 'test' : [ 'pytest>=2.8.2', 'pytest-pythonpath>=0.7' ], |
| 27 | + 'graph': ['pygraphviz>=1.3.1'], |
| 28 | + 'test': ['pytest>=2.8.2', 'pytest-pythonpath>=0.7'], |
27 | 29 | }, |
28 | | -) |
| 30 | + ) |
0 commit comments