feat: prototype

This commit is contained in:
Felix Spöttel
2022-06-29 18:14:23 +02:00
parent 60e2ff68cc
commit 50f8a872e6
15 changed files with 16765 additions and 0 deletions

21
setup.py Normal file
View File

@@ -0,0 +1,21 @@
from setuptools import setup
setup(
name="geocluster",
version="0.1",
description="",
author="Bellingcat",
packages=["geocluster"],
entry_points={"console_scripts": ["geocluster = geocluster.cli:main"]},
install_requires=[
"click",
"geojson",
"keplergl",
"numpy",
"pandas",
"scikit-learn",
],
extras_require={"dev": ["black", "wheel"]},
include_package_data=True,
zip_safe=False,
)