-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update setup.py, fix d3networkx installation
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -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', | ||
|
@@ -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', | ||
|