Skip to content

Commit

Permalink
Added requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Sadovskii authored and Andrei Sadovskii committed Jan 27, 2023
1 parent e799c6f commit ea71de1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
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

0 comments on commit ea71de1

Please sign in to comment.