From 6906d3be9ad53e79d968d0f12de2ccc7dc7ebd24 Mon Sep 17 00:00:00 2001 From: Matthew Gidden Date: Thu, 10 Aug 2017 14:11:44 +0200 Subject: [PATCH] trying new init structure --- salamanca/__init__.py | 1 - setup.py | 6 ++---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/salamanca/__init__.py b/salamanca/__init__.py index 25b429d..e69de29 100644 --- a/salamanca/__init__.py +++ b/salamanca/__init__.py @@ -1 +0,0 @@ -__all__ = ['currency', 'data'] diff --git a/setup.py b/setup.py index e15c310..7071c55 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import shutil -from setuptools import setup, Command +from setuptools import setup, Command, find_packages from setuptools.command.install import install # Thanks to http://patorjk.com/software/taag/ @@ -45,9 +45,7 @@ def run(self): def main(): print(logo) - packages = [ - 'salamanca', - ] + packages = find_packages() pack_dir = { 'salamanca': 'salamanca', }