-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renaming to geoclustering due to pypi
- Loading branch information
Showing
13 changed files
with
1,158 additions
and
15 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
click = "*" | ||
geojson = "*" | ||
keplergl = "*" | ||
numpy = "*" | ||
pandas = "*" | ||
scikit-learn = "*" | ||
|
||
[dev-packages] | ||
black = "*" | ||
wheel = "*" | ||
|
||
[requires] | ||
python_version = "3.9" |
Large diffs are not rendered by default.
Oops, something went wrong.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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
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,11 +3,11 @@ | |
# version.py defines the VERSION and VERSION_SHORT variables. | ||
# We use exec here so we don't import cached_path whilst setting up. | ||
VERSION = {} # type: ignore | ||
with open("geocluster/version.py", "r") as version_file: | ||
with open("geoclustering/version.py", "r") as version_file: | ||
exec(version_file.read(), VERSION) | ||
|
||
setup( | ||
name="geocluster", | ||
name="geoclustering", | ||
version=VERSION["VERSION"], | ||
description="📍 command-line tool for clustering geolocations.", | ||
long_description=open("README.md").read(), | ||
|
@@ -21,9 +21,9 @@ | |
author="Bellingcat", | ||
author_email="[email protected]", | ||
license="MIT", | ||
packages=["geocluster"], | ||
packages=["geoclustering"], | ||
keywords=["cluster", "gis", "pattern-analysis"], | ||
entry_points={"console_scripts": ["geocluster = geocluster.__main__:main"]}, | ||
entry_points={"console_scripts": ["geoclustering = geoclustering.__main__:main"]}, | ||
install_requires=[ | ||
"click", | ||
"geojson", | ||
|