Skip to content

Commit

Permalink
Fix packaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
lpomfrey committed Apr 23, 2014
1 parent a9906ae commit f338f58
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ include AUTHORS.rst
include CONTRIBUTING.rst
include LICENSE
include README.rst
include requirements.txt
recursive-include filemaker *.html *.png *.gif *js *jpg *jpeg *svg *py
recursive-exclude filemaker *.pyc
2 changes: 1 addition & 1 deletion filemaker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from distutils import version


__version__ = '0.2.1'
__version__ = '0.2.2'
version_info = version.StrictVersion(__version__).version


Expand Down
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,15 @@ def get_version(package):
author='Luke Pomfrey',
author_email='luke.pomfrey@titanemail.com',
packages=find_packages(exclude='test_project'),
install_requires=open('requirements.txt').read().split('\n'),
install_requires=[
'django',
'django-appconf',
'lxml',
'python-dateutil',
'pytz',
'requests',
'urlobject',
]
tests_require=['mock', 'httpretty'],
test_suite='runtests.runtests',
classifiers=[
Expand Down

0 comments on commit f338f58

Please sign in to comment.