Skip to content

Commit 6315383

Browse files
committed
make tabulate a real dependency
1 parent 39d0635 commit 6315383

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ six==1.7.3
55
monty==0.5.6
66
python-dateutil==2.2
77
Flask-paginate==0.3.2
8+
tabulate>=0.7.5

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@
2727
package_data={'fireworks.user_objects.queue_adapters': ['*.txt'], 'fireworks.user_objects.firetasks': ['templates/*.txt'], 'fireworks.flask_site': ['static/images/*', 'static/css/*', 'static/js/*', 'templates/*']},
2828
zip_safe=False,
2929
install_requires=['pyyaml>=3.1.0', 'pymongo>=3.0', 'Jinja2>=2.7.3',
30-
'six>=1.5.2', 'monty>=0.5.6', 'python-dateutil>=2.2'],
30+
'six>=1.5.2', 'monty>=0.5.6', 'python-dateutil>=2.2', 'tabulate>=0.7.5'],
3131
extras_require={'rtransfer': ['paramiko>=1.11'],
3232
'newt': ['requests>=2.01'],
3333
'webgui':['flask>=0.10.1', 'flask-paginate>=0.2.8'],
3434
'daemon_mode':['fabric>=1.8.1'],
35-
'plotting':['matplotlib>=1.1.1', 'networkx>=1.8.1'],
36-
'introspect':['tabulate>=0.7.5']},
35+
'plotting':['matplotlib>=1.1.1', 'networkx>=1.8.1']},
3736
classifiers=['Programming Language :: Python :: 2.7',
3837
'Development Status :: 4 - Beta',
3938
'Intended Audience :: Science/Research',

0 commit comments

Comments
 (0)