Skip to content

Commit

Permalink
broken setup #4
Browse files Browse the repository at this point in the history
  • Loading branch information
nitely committed May 18, 2014
1 parent db263d1 commit 59307e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions 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
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -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()
Expand All @@ -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,
Expand Down

0 comments on commit 59307e2

Please sign in to comment.