Skip to content

Commit

Permalink
fix install
Browse files Browse the repository at this point in the history
  • Loading branch information
Windfarer committed Oct 31, 2019
1 parent f7806ab commit 10e5ff2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Status](https://readthedocs.org/projects/mongokit-ng/badge/?version=latest)](htt
Thanks the origin author [namlook](https://github.com/namlook) to create mongokit [https://github.com/namlook/mongokit](https://github.com/namlook/mongokit)

Mongokit is a Python ODM of MongoDB.
This project ports mongokit to Python 3 and the latest pymongo (3.9+) version.
This project ports mongokit to Python 3 and the latest pymongo (3.9+) version...


- Free software: MIT license
- Documentation: TODO.
Expand All @@ -18,6 +19,9 @@ This project ports mongokit to Python 3 and the latest pymongo (3.9+) version.
pip install mongokit-ng
```

## Usage
same as mongokit, but replace `mongokit` with `mongokit_ng` in all importing.

## Project Status
See [https://github.com/Windfarer/mongokit-ng/issues/1](https://github.com/Windfarer/mongokit-ng/issues/1)

Expand Down
2 changes: 1 addition & 1 deletion mongokit_ng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = "0.1.0"
__version__ = "0.1.1"

# W0401,W0614,W0611 wildcard/unused import
# pylint: disable=W0401,W0614,W0611
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
with open('HISTORY.rst') as history_file:
history = history_file.read()

requirements = [ ]
requirements = ["pymongo>=3.9.0"]

setup_requirements = [ "pymongo>=3.9.0" ]
setup_requirements = []

test_requirements = [ ]
test_requirements = []

setup(
author="Windfarer",
Expand Down

0 comments on commit 10e5ff2

Please sign in to comment.