Skip to content

Commit

Permalink
release 0.7.11
Browse files Browse the repository at this point in the history
- removed ez_install, just use setuptools
- updated README and INSTALL
- release 0.7.11
  • Loading branch information
orbeckst committed Nov 10, 2015
1 parent 5c65b7a commit 0285672
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 306 deletions.
21 changes: 6 additions & 15 deletions INSTALL.rst
Expand Up @@ -2,45 +2,36 @@
INSTALL
=========

RecSQL uses python's setuptools, and specifically, `easy_install`_

You can install to the latest version directly from the internet (via
the Python Package index, where RecSQl is listed as
http://pypi.python.org/pypi/RecSQL) with ::

easy_install RecSQL

or ::

pip install RecSQL


You can also download the source manually from
https://github.com/orbeckst/RecSQL/tags and unpack
it. Install from the unpacked source with ::

cd RecSQL-0.7.7
cd RecSQL-0.7.11
python setup.py install

See the `easy_install`_ documentation for details, in particular if
you are interested in installing into non-standard locations.

The latest sources can be obtained by cloning the `RecSQL github repository`_ ::
The latest sources can be obtained by cloning the `RecSQL github
repository`_ ::

git clone git://github.com/orbeckst/RecSQL.git

and installing from the source as above.

Additional requirements are numpy_ and pysqlite_. `easy_install`_ will
Additional requirements are numpy_ and pysqlite_. `pip`_ will
automatically attempt to download appropriate versions if none are
currently installed.

.. URLs:
.. _easy_install:
http://peak.telecommunity.com/DevCenter/EasyInstall
.. _numpy:
http://numpy.scipy.org
.. _pysqlite:
http://pysqlite.org/
.. _RecSQL github repository:
https://github.com/orbeckst/RecSQL
https://github.com/orbeckst/RecSQL
.. _pip: https://pip.pypa.io/en/stable/
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1 +1 @@
include ez_setup.py setup.py COPYING INSTALL.rst README.rst requirements.txt
include setup.py LICENSE INSTALL.rst README.rst requirements.txt
19 changes: 9 additions & 10 deletions README.rst
Expand Up @@ -8,7 +8,9 @@ tables (using SQLite) and provide convenience functions to return
recarrays on demand.

This works ok for small tables but less so if you want to access
gigabytes of data as recarrays.
gigabytes of data as recarrays. It's a hack.

Documentation can be found at http://recsql.readthedocs.org/


Example
Expand Down Expand Up @@ -42,16 +44,11 @@ Availability
------------

The latest version of the package is being made available via the
internet at https://github.com/orbeckst/RecSQL or from the direct
download URI (for ``easy_install``) https://github.com/orbeckst/RecSQL/tags
internet at https://github.com/orbeckst/RecSQL

RecSQL is also listed on PyPi http://pypi.python.org/pypi/RecSQL and
can thus be installed with ::

easy_install RecSQL

or ::

pip install RecSQL

See :doc:`INSTALL` for further installation instructions.
Expand All @@ -60,8 +57,10 @@ A git repository of the package is hosted at
http://github.com/orbeckst/RecSQL .


Contact
-------
Getting Involved
----------------

Oliver Beckstein <orbeckst@gmail.com>
Please submit problems, questions and questions through the issue
tracker https://github.com/orbeckst/RecSQL/issues . Pull requests are
also very welcome.

276 changes: 0 additions & 276 deletions ez_setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion recsql/__init__.py
Expand Up @@ -258,7 +258,7 @@
__all__ = ['SQLarray', 'SQLarray_fromfile']

VERSION = 0,7,11
RELEASE = False
RELEASE = True

from .sqlarray import SQLarray, SQLarray_fromfile

Expand Down
3 changes: 0 additions & 3 deletions setup.py
Expand Up @@ -3,10 +3,7 @@
# Released under the GNU Public License 3 (or higher, your choice)


from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages

import sys

requirements = ['numpy>=1.6',]
Expand Down

0 comments on commit 0285672

Please sign in to comment.