From 59307e2c0163e4eb332bed9f1e8fe113e1710f30 Mon Sep 17 00:00:00 2001 From: nitely Date: Sun, 18 May 2014 20:37:30 -0300 Subject: [PATCH] broken setup #4 --- MANIFEST.in | 4 +--- setup.py | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 32e125ee7..b69790da3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,3 @@ -recursive-include spirit/static * -recursive-include spirit/templates * -recursive-include spirit/whoosh_index * +recursive-include spirit * include LICENSE include README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 9e6b88767..4d81d4161 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import os -from setuptools import setup +from setuptools import setup, find_packages README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read() REQUIREMENTS = open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).read() @@ -18,9 +18,7 @@ author_email='ecastroborsani@gmail.com', long_description=README, url='http://spirit-project.com/', - packages=[ - 'spirit', - ], + packages=find_packages(exclude=['example', ]), test_suite="run_tests.run_tests", include_package_data=True, zip_safe=False,