Skip to content

Commit

Permalink
Include test data (closes #286).
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Aug 23, 2020
1 parent fdfe0ae commit 1f8d66d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ include CHANGELOG
include docs/Makefile
recursive-include docs *.rst
recursive-include docs *.py
recursive-include tests *

recursive-include sitetree/locale *
recursive-include sitetree/static *
recursive-include sitetree/migrations *.py
recursive-include sitetree/templates *.html
recursive-include sitetree/templatetags *.py
recursive-include sitetree/management *.py
recursive-include sitetree/management *.py
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os
import sys
from setuptools import setup

from setuptools import setup, find_packages

from sitetree import VERSION

f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
Expand All @@ -21,7 +23,7 @@
author='Igor `idle sign` Starikov',
author_email='idlesign@yandex.ru',

packages=['sitetree'],
packages=find_packages(),
include_package_data=True,
zip_safe=False,

Expand Down

0 comments on commit 1f8d66d

Please sign in to comment.