Skip to content

Commit e957977

Browse files
authored
Adds psycopg2 as an extra
can install psycopg2 by using the command line syntax ```pip install -e .[sql]```
1 parent a8e3832 commit e957977

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,13 @@ def run(self):
5959
install_requires=[
6060
'requests'
6161
],
62+
extras_require = {
63+
'sql': ["psycopg2"]
64+
}
6265
classifiers=[
6366
'Intended Audience :: Developers',
6467
],
6568
cmdclass={
6669
'publish': PublishCommand,
6770
}
68-
)
71+
)

0 commit comments

Comments
 (0)