mirror of
https://github.com/bellingcat/geoclustering.git
synced 2026-06-12 13:38:29 +03:00
feat: prototype
This commit is contained in:
21
setup.py
Normal file
21
setup.py
Normal 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,
|
||||
)
|
||||
Reference in New Issue
Block a user