We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d0a57 commit 1b6a83dCopy full SHA for 1b6a83d
1 file changed
setup.py
@@ -57,18 +57,20 @@ def run(self):
57
setup(
58
name=PACKAGE_NAME,
59
version="0.2.0a",
60
+
61
+ cmdclass={
62
+ 'install': InstallCmd,
63
+ 'develop': DevelopCmd
64
+ },
65
66
author="Michael Tryby",
67
author_email="Michael Tryby@epa.gov",
68
description="epanet_python - SWIG generated python wrappers for epanet libraries",
69
license="CC0",
70
classifiers=[
71
'Private :: Do Not Upload to pypi server',
72
],
- cmdclass={
- 'install': InstallCmd,
- 'develop': DevelopCmd
73
- },
74
setup_requires=["pytest-runner"],
- tests_require=["pytest"]
75
+ tests_require=["pytest", 'numpy']
76
)
0 commit comments