Skip to content

Commit 7911c26

Browse files
committed
tests_requires is removed.
1 parent d7e93e3 commit 7911c26

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

setup.py

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

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

0 commit comments

Comments
 (0)