Skip to content

Commit

Permalink
Fix packaging bits
Browse files Browse the repository at this point in the history
Mainly addresses new python wheel requirements
  • Loading branch information
untergeek committed Jun 25, 2015
1 parent 84d2c8b commit e89a53d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -15,3 +15,4 @@ coverage.xml
nosetests.xml
index.html
docs/asciidoc/html_docs
wheelhouse
12 changes: 10 additions & 2 deletions MANIFEST.in
@@ -1,7 +1,15 @@
include Changelog.rst
include CONTRIBUTORS
include CONTRIBUTORS CONTRIBUTING.md
include LICENSE.txt
include README.md

include Dockerfile
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-include test *
recursive-include docs *
recursive-exclude docs *.pyc
recursive-exclude docs *.pyo
recursive-exclude test *.pyc
recursive-exclude test *.pyo
prune docs/_build
prune docs/asciidoc/html_docs
3 changes: 3 additions & 0 deletions requirements.txt
@@ -0,0 +1,3 @@
urllib3>=1.8.3
elasticsearch>=1.6.0
click>=3.3
3 changes: 3 additions & 0 deletions setup.cfg
@@ -1,2 +1,5 @@
[metadata]
description-file = README.md

[bdist_wheel]
universal=1

0 comments on commit e89a53d

Please sign in to comment.