Skip to content

Commit

Permalink
Update setup.py, fix d3networkx installation
Browse files Browse the repository at this point in the history
  • Loading branch information
exe0cdc committed Jul 31, 2017
1 parent 167cee7 commit 8783846
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from setuptools import setup, find_packages
from os import path
try:
from jupyterpip import cmdclass
except:
Expand All @@ -7,18 +8,25 @@
pip.main(['install', 'jupyter-pip'])
cmdclass = importlib.import_module('jupyterpip').cmdclass

here = path.abspath(path.dirname(__file__))

# Get the long description from the relevant file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()

packages = find_packages()

setup(
name='PyscesToolbox',
version='0.8.6',
version='0.8.7',
packages=packages,
url='https://github.com/PySCeS/PyscesToolbox',
download_url='http://github.com/PySCeS/PyscesToolbox/archive/0.8.6.tar.gz',
download_url='http://github.com/PySCeS/PyscesToolbox/archive/0.8.7.tar.gz',
license='BSD-3-Clause',
author='Carl Christensen',
author_email='[email protected]',
description='A set of metabolic model analysis tools for PySCeS.',
long_description=long_description,
install_requires=['IPython>=4.0.0',
'numpy',
'sympy',
Expand All @@ -29,6 +37,7 @@
'networkx',
'jupyter',
],
package_data={'d3networkx_psctb': ['widget.js'],},
keywords=['metabolism','metabolic control analysis','modelling'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 8783846

Please sign in to comment.