Skip to content

Commit d7e93e3

Browse files
committed
updated rquires in setup.py
1 parent 5099b66 commit d7e93e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
def read(filename):
1111
return open(os.path.join(os.path.dirname(__file__), filename)).read()
1212

13+
requires = ['Jinja2', 'pytest', 'pytest-pythonpath']
14+
1315
setup(name='pyverilog',
1416
version=version,
1517
description='Python-based Hardware Design Processing Toolkit for Verilog HDL: Parser, Dataflow Analyzer, Controlflow Analyzer and Code Generator',
@@ -21,6 +23,6 @@ def read(filename):
2123
url='https://github.com/PyHDI/Pyverilog',
2224
packages=find_packages(),
2325
package_data={ 'pyverilog.ast_code_generator' : ['template/*'], },
24-
install_requires=['Jinja2'],
25-
tests_require=['pytest', 'pytest-pythonpath']
26+
install_requires=requires,
27+
tests_require=requires,
2628
)

0 commit comments

Comments
 (0)