Fix usage of versioneer in setup.py (#362)

This commit is contained in:
Joris Van den Bossche
2016-07-30 12:35:35 +02:00
parent 2e1fd7e332
commit cbb17cbede
2 changed files with 6 additions and 1 deletions
+4
View File
@@ -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
+2 -1
View File
@@ -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())