Skip to content

Commit

Permalink
Correct extras_require
Browse files Browse the repository at this point in the history
  • Loading branch information
gplessm committed Oct 21, 2016
1 parent ad6d4c2 commit 580bd8c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@
author='openego development group',
author_email='[email protected]',
description='ego input/output repository',
version='0.0.1rc4',
version='0.0.1rc5',
url='https://github.com/openego/ego.io',
packages=find_packages(),
license='GNU GENERAL PUBLIC LICENSE Version 3',
install_requires=[
'geoalchemy2',
"sqlalchemy[postgresql] <=1.0.15",
"sqlalchemy <=1.0.15",
"numpy",
"psycopg2"]
"psycopg2"],
extras_require={
"sqlalchemy <=1.0.15": 'postgresql'
}
)

0 comments on commit 580bd8c

Please sign in to comment.