forked from pool/python-geolib
requirements. - Switch to pyproject and autosetup macros. - Stop using greedy globs in %files. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-geolib?expand=0&rev=6
31 lines
807 B
Diff
31 lines
807 B
Diff
Index: geolib-1.0.7/setup.py
|
|
===================================================================
|
|
--- geolib-1.0.7.orig/setup.py
|
|
+++ geolib-1.0.7/setup.py
|
|
@@ -3,17 +3,14 @@ import setuptools
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
-requires = [
|
|
- 'future'
|
|
-]
|
|
+requires = []
|
|
test_requirements = [
|
|
- 'future',
|
|
'pytest'
|
|
]
|
|
|
|
setuptools.setup(
|
|
name="geolib",
|
|
- version="1.0.6",
|
|
+ version="1.0.7",
|
|
author="Anu Joy",
|
|
author_email="oss@cartographix.org",
|
|
description="A library for geohash encoding, decoding and associated functions",
|
|
Index: geolib-1.0.7/requirements.txt
|
|
===================================================================
|
|
--- geolib-1.0.7.orig/requirements.txt
|
|
+++ geolib-1.0.7/requirements.txt
|
|
@@ -1 +0,0 @@
|
|
-future>=0.16.0
|