Skip to content

Commit

Permalink
prepare for 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Jun 11, 2020
1 parent 8059084 commit 04a245a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ https://github.com/monetdBSolutions/MonetDBe-Python/

For binary wheel installation you need:

* Linux
* Linux or OSX 10.13+
* pip >= 19.3
* Python >= 3.6

For non-binary wheel installation (Windows, OSX) you also (for now) need to
have MonetDB installed.
For non-binary wheel installation (Windows) you also need to have MonetDB installed.


# install
Expand All @@ -33,7 +32,7 @@ $ cd MonetDB
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=<monetdb_prefix> -DINT128=ON -DPY3INTEGRATION=OFF
$ make -j10 embedded install
$ make install
```

You can also compile monetdbe from the source folder:
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@
with open("README.md", "r") as fh:
long_description = fh.read()

tests_require = ['pytest', 'numpy', 'pandas']
tests_require = ['pytest']

extras_require = {
'numpy': ['numpy'],
'pandas': ['pandas'],
'full': ['numpy', 'pandas'],
'test': tests_require,

}

setuptools.setup(
name="monetdbe",
version="0.5",
version="0.6",
author="Gijs Molenaar",
author_email="gijs@pythonic.nl",
description="MonetDBe - the Python embedded MonetDB",
Expand All @@ -35,7 +32,7 @@
setup_requires=["cffi>=1.0.0"],
extras_require=extras_require,
cffi_modules=["monetdbe/util/builder.py:ffibuilder"],
install_requires=["cffi>=1.0.0"],
install_requires=["cffi>=1.0.0", "numpy", "pandas"],
tests_require=tests_require,
test_suite="tests",
)

0 comments on commit 04a245a

Please sign in to comment.