Skip to content

Commit

Permalink
retire gnuplot dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed May 22, 2015
1 parent 56a0e00 commit 423d996
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion requirements.txt
@@ -1,4 +1,3 @@
numpy==1.9.2
http://prdownloads.sourceforge.net/gnuplot-py/gnuplot-py-1.8.tar.gz?download
Pint==0.5.1
uncertainties==2.4.4
13 changes: 6 additions & 7 deletions setup.py
Expand Up @@ -13,14 +13,13 @@
author = metadata['author'],
author_email = metadata['email'],
url = metadata['url'],
packages = [package_name, '{}.ccsgp'.format(package_name),
'{}.examples'.format(package_name)],
include_package_data=True,
setup_requires = [ 'numpy==1.9.2' ],
install_requires = [ 'numpy==1.9.2', 'Pint==0.5.1', 'uncertainties==2.4.4', 'gnuplot-py==1.8' ],
dependency_links = [
'http://prdownloads.sourceforge.net/gnuplot-py/gnuplot-py-1.8.tar.gz?download'
packages = [
package_name, '{}.ccsgp'.format(package_name),
'{}.ccsgp.Gnuplot'.format(package_name),
'{}.examples'.format(package_name)
],
include_package_data=True,
install_requires = [ 'numpy==1.9.2', 'Pint==0.5.1', 'uncertainties==2.4.4' ],
license = 'MIT',
keywords = ['gnuplot', 'graph', 'plot', 'panel'],
)

0 comments on commit 423d996

Please sign in to comment.