Skip to content

Commit

Permalink
Updates setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
songololo committed Mar 26, 2021
1 parent 33c9467 commit ff74566
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ docspec-python
osmnx
matplotlib
networkx>=2.4
numba==0.53.0rc1.post1
numba>=0.53
numpy
pdoc
pytest
Expand Down
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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'
]
)

0 comments on commit ff74566

Please sign in to comment.