1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Author: Ole Streicher <olebole@debian.org>
Description: Change requires to install_requires
--- a/setup.py
+++ b/setup.py
@@ -94,8 +94,7 @@
version=VERSION,
description=DESCRIPTION,
scripts=scripts,
- requires=['astropy', 'numpy', 'matplotlib'],
- install_requires=['astropy'],
+ install_requires=['astropy', 'numpy', 'matplotlib'],
provides=[PACKAGENAME],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
|