-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix dependencies and version in setup.py
- Loading branch information
1 parent
48def49
commit cb73760
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,6 @@ | |
import re | ||
import sys | ||
|
||
from geolinks import __version__ as version | ||
from setuptools import Command, find_packages, setup | ||
|
||
|
||
|
@@ -73,7 +72,7 @@ def get_package_version(): | |
|
||
setup( | ||
name='geolinks', | ||
version=version, | ||
version=get_package_version(), | ||
description='Utilities to deal with geospatial links', | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
|
@@ -85,6 +84,7 @@ def get_package_version(): | |
maintainer='Tom Kralidis', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/geopython/geolinks', | ||
install_requires=read('requirements.txt').splitlines(), | ||
packages=find_packages(), | ||
entry_points={ | ||
'console_scripts': [ | ||
|