Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@ nosetests.xml
.project
.pydevproject
*.swp

.idea
.DS_Store
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
sqlalchemy==1.*
numpy
pandas
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from distutils.core import setup
from setuptools import find_packages

with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()

setup(
name="pandasql",
version="0.7.3",
Expand All @@ -13,7 +16,7 @@
package_data={"pandasql": ["data/*.csv"]},
description="sqldf for pandas",
long_description=open("README.rst").read(),
install_requires=['numpy', 'pandas', 'sqlalchemy'],
install_requires=requirements,
classifiers=[
"License :: OSI Approved :: MIT License",
],
Expand Down