diff --git a/setup.cfg b/setup.cfg index 96b08c0..4c4c683 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,10 @@ [bdist_wheel] universal = 1 +# See the docstring in versioneer.py for instructions. Note that you must +# re-run 'versioneer.py setup' after changing this section, and commit the +# resulting files. + [versioneer] VCS = git style = pep440 diff --git a/setup.py b/setup.py index 3d2bed0..20b4b83 100644 --- a/setup.py +++ b/setup.py @@ -50,4 +50,5 @@ setup(name='geopandas', packages=['geopandas', 'geopandas.io', 'geopandas.tools', 'geopandas.datasets'], package_data={'geopandas': data_files}, - install_requires=INSTALL_REQUIRES) + install_requires=INSTALL_REQUIRES, + cmdclass=versioneer.get_cmdclass())