-
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.
- Loading branch information
Showing
2 changed files
with
11 additions
and
11 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ docspec-python | |
osmnx | ||
matplotlib | ||
networkx>=2.4 | ||
numba==0.53.0rc1.post1 | ||
numba>=0.53 | ||
numpy | ||
pdoc | ||
pytest | ||
|
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 |
---|---|---|
|
@@ -8,15 +8,15 @@ | |
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/* | ||
''' | ||
|
||
from setuptools import setup | ||
|
||
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='[email protected]', | ||
license='Apache 2.0 + "Commons Clause" License Condition v1.0', | ||
author_email='[email protected]', | ||
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' | ||
] | ||
) |