Skip to content

Commit 1b6a83d

Browse files
committed
updating setup.py with numpy dependency
1 parent e6d0a57 commit 1b6a83d

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,20 @@ def run(self):
5757
setup(
5858
name=PACKAGE_NAME,
5959
version="0.2.0a",
60+
61+
cmdclass={
62+
'install': InstallCmd,
63+
'develop': DevelopCmd
64+
},
65+
6066
author="Michael Tryby",
6167
author_email="Michael Tryby@epa.gov",
6268
description="epanet_python - SWIG generated python wrappers for epanet libraries",
6369
license="CC0",
6470
classifiers=[
6571
'Private :: Do Not Upload to pypi server',
6672
],
67-
cmdclass={
68-
'install': InstallCmd,
69-
'develop': DevelopCmd
7073

71-
},
7274
setup_requires=["pytest-runner"],
73-
tests_require=["pytest"]
75+
tests_require=["pytest", 'numpy']
7476
)

0 commit comments

Comments
 (0)