Skip to content

Commit e01abf3

Browse files
committed
BUG: Fix installation. No packages listed in setup
1 parent 10c6231 commit e01abf3

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from distutils.core import setup
22
import os
33
from pathlib import Path
4+
from setuptools import find_packages
45

56
from versioneer import get_cmdclass, get_version
67

@@ -19,6 +20,7 @@ def read_file(filename):
1920
name="dataframe_sql",
2021
version=get_version(),
2122
cmdclass=get_cmdclass(),
23+
packages=find_packages(include=["dataframe_sql", "dataframe_sql.*"]),
2224
long_description="Coming soon...",
2325
maintainer="Zach Brookler",
2426
maintainer_email="zachb1996@yahoo.com",

0 commit comments

Comments
 (0)