Skip to content

Commit

Permalink
Fixed pip install bug?
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrpugh committed Apr 7, 2015
1 parent fdcb187 commit 89f215f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -12,7 +12,7 @@ def write_version_py(filename=None):
doc += "\nversion = '%s'" % VERSION

if not filename:
filename = os.path.join(os.path.dirname(__file__), 'quantecon', 'version.py')
filename = os.path.join(os.path.dirname(__file__), 'pycollocation', 'version.py')

fl = open(filename, 'w')
try:
Expand All @@ -24,14 +24,15 @@ def write_version_py(filename=None):

setup(
name="pyCollocation",
version=pycollocation.__version__,
version=VERSION,
license="MIT License",
author="davidrpugh",
install_requires=["numpy",
"scipy",
"sympy",
"pandas",
],
"ipython",
],
author_email="david.pugh@maths.ox.ac.uk",
classifiers=['Development Status :: 1 - Planning',
'Intended Audience :: Education',
Expand Down

0 comments on commit 89f215f

Please sign in to comment.