Skip to content

Commit

Permalink
fix dependencies and version in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Sep 7, 2023
1 parent 48def49 commit cb73760
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import re
import sys

from geolinks import __version__ as version
from setuptools import Command, find_packages, setup


Expand Down Expand Up @@ -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',
Expand All @@ -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': [
Expand Down

0 comments on commit cb73760

Please sign in to comment.