Skip to content

Commit e061166

Browse files
committed
1.0.2 candidate
1 parent 14ca577 commit e061166

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,24 @@
77
m = re.search(r'(\d+\.\d+\.\d+(-.+)?)', utils.version.VERSION)
88
version = m.group(1) if m is not None else '0.0.0'
99

10+
1011
def read(filename):
1112
return open(os.path.join(os.path.dirname(__file__), filename)).read()
1213

14+
1315
setup(name='veriloggen',
1416
version=version,
1517
description='A library for constructing a Verilog HDL source code in Python',
1618
long_description=read('README.rst'),
17-
keywords = 'FPGA, Verilog HDL',
19+
keywords='FPGA, Verilog HDL, High-Level Synthesis',
1820
author='Shinya Takamaeda-Yamazaki',
1921
license="Apache License 2.0",
2022
url='https://github.com/PyHDI/veriloggen',
2123
packages=find_packages(),
2224
#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'],
2426
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'],
2729
},
28-
)
30+
)

utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "1.0.2-dev"
1+
VERSION = "1.0.2"

0 commit comments

Comments
 (0)