mirror of
https://github.com/wassname/geopandas.git
synced 2026-09-12 12:20:25 +08:00
+2
-2
@@ -41,7 +41,7 @@ master_doc = 'index'
|
||||
|
||||
# General information about the project.
|
||||
project = u'GeoPandas'
|
||||
copyright = u'2013, GeoPandas developers'
|
||||
copyright = u'2013-2014, GeoPandas developers'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
@@ -52,7 +52,7 @@ try:
|
||||
version = release = d['version']
|
||||
except:
|
||||
# FIXME: This shouldn't be hardwired, but should be set one place only
|
||||
version = release = '0.1.0.dev'
|
||||
version = release = '0.1.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
||||
+14
-5
@@ -1,14 +1,23 @@
|
||||
Installation
|
||||
============
|
||||
|
||||
GeoPandas is continuous-release software. You may install the latest
|
||||
source from `GitHub`_ and use the setup script::
|
||||
The released version of GeoPandas is 0.1. To install the released
|
||||
version, use ``pip install geopandas``.
|
||||
|
||||
You may install the latest development version by cloning the
|
||||
`GitHub`_ repository and using the setup script::
|
||||
|
||||
git clone https://github.com/kjordahl/geopandas.git
|
||||
cd geopandas
|
||||
python setup.py install
|
||||
|
||||
GeoPandas is also available on `PyPI`_, so ``pip install geopandas``
|
||||
should work as well. You will have to add the ``--pre`` flag
|
||||
for pip 1.4 and later.
|
||||
It is also possible to install the latest development version
|
||||
available on PyPI with `pip` by adding the ``--pre`` flag for pip 1.4
|
||||
and later, or to use `pip` to install directly from the GitHub
|
||||
repository with::
|
||||
|
||||
pip install git+git://github.com/kjordahl/geopandas.git
|
||||
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
try:
|
||||
from geopandas.version import version as __version__
|
||||
except ImportError:
|
||||
__version__ = '0.1.0.dev-unknown'
|
||||
__version__ = '0.1.0'
|
||||
|
||||
from geopandas.geoseries import GeoSeries
|
||||
from geopandas.geodataframe import GeoDataFrame
|
||||
|
||||
Reference in New Issue
Block a user