Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit b77daf4

Browse files
author
Christian Schramm
committed
setup.py: Fix required dependencies
The documented requirement argument seems to be 'install_requires', so use that. Also, 'networkx' is needed if 'python setup.py {install,develop}' should work. Lastly, add a comma for good style (as with CLASSIFIERS).
1 parent dcab3af commit b77daf4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@
3636
license='BSD',
3737
classifiers=CLASSIFIERS,
3838
keywords=KEYWORDS,
39-
requires=['numpy']
39+
install_requires=['numpy', 'networkx'],
4040
)

0 commit comments

Comments
 (0)