From 2148929f3f4157a4bfda318c670290b4391a2739 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sat, 25 Feb 2017 18:27:07 +0100 Subject: Use Peewee instead of SQLAlchemy --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3129502..660054e 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ -from setuptools import setup +from setuptools import setup, find_packages setup( name='archivist', version='0.1', - py_modules=['archivist'], + py_modules=find_packages(), + include_package_data=True, install_requires=[ 'Click', - 'sqlalchemy', - 'alembic' + 'peewee' ], entry_points=''' [console_scripts] -- cgit v1.2.3