Skip to content

Commit

Permalink
add missing metadata files
Browse files Browse the repository at this point in the history
  • Loading branch information
red-crown committed Mar 7, 2016
1 parent 99aed05 commit ba58019
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.rst LICENSE HISTORY.rst requirements.txt AUTHORS.rst
18 changes: 17 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
.PHONY: docs

init:
pip install -r requirements.txt

test:
nosetests tests
py.test tests

coverage:
py.test --verbose --cov-report term --cov=rcquerybuilder tests

publish:
python setup.py register
python setup.py sdist upload
python setup.py bdist_wheel --universal upload
rm -fr build dist .egg rcquerybuilder.egg-info

docs:
sphinx-apidoc -f -o docs rcquerybuilder
cd docs && make html
@echo "\033[95m\n\nBuild successful! View the docs homepage at docs/_build/html/index.html.\n\033[0m"
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,19 @@ def run_tests(self):
]

setup(name='rcquerybuilder',
version='0.1.1',
version='0.1.2',
url='http://github.com/red-crown/mongo-querybuilder/',
description='Provides a fluent query builder wrapper around pymongo',
long_description=README + '\n\n' + HISTORY,
author='Matthew Strickland',
author_email='matthew@redcrown.co',
license=LICENSE,
tests_require=['pytest'],
tests_require=['pytest', 'pytest-cov'],
platforms='any',
zip_safe=False,
package_data={'': ['LICENSE', 'README.rst', 'HISTORY.rst']},
package_dir={'rcquerybuilder': 'rcquerybuilder'},
include_package_data=True,
install_requires=requires,
classifiers=[
'Intended Audience :: Developers',
Expand Down

0 comments on commit ba58019

Please sign in to comment.