diff --git a/requirements.txt b/requirements.txt index 13a1ab49..9d75a688 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ docspec-python osmnx matplotlib networkx>=2.4 -numba==0.53.0rc1.post1 +numba>=0.53 numpy pdoc pytest diff --git a/setup.py b/setup.py index bc7c3564..f40cce5a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ python setup.py sdist bdist_wheel pip install --upgrade twine TESTING REPO: twine upload --repository-url https://test.pypi.org/legacy/ dist/* -DOWNLOADING FROM TEST REPO: pip install --extra-index-url https://test.pypi.org/simple/ cityseer==1.0.0a1 +DOWNLOADING FROM TEST REPO: pip install --extra-index-url https://test.pypi.org/simple/ cityseer==1.0.4 OTHERWISE: twine upload dist/* ''' @@ -16,7 +16,7 @@ setup( name='cityseer', - version='1.0.3', + version='1.0.4', packages=['cityseer', 'cityseer.algos', 'cityseer.metrics', 'cityseer.tools'], description='Computational tools for urban analysis', url='https://github.com/benchmark-urbanism/cityseer-api', @@ -26,16 +26,16 @@ "Source Code": "https://github.com/benchmark-urbanism/cityseer-api", }, author='Gareth Simons', - author_email='gareth@cityseer.io', - license='Apache 2.0 + "Commons Clause" License Condition v1.0', + author_email='info@benchmarkurbanism.com', + license='GNU GPLv3', install_requires=[ - 'numpy', - 'numba', - 'utm', - 'shapely>=1.7.0', + 'matplotlib', 'networkx>=2.4', + 'numba>=0.53', + 'numpy', + 'shapely >= 1.7.0', + 'sklearn', 'tqdm', - 'matplotlib', - 'sklearn' + 'utm' ] )