mirror of
https://github.com/bellingcat/geoclustering.git
synced 2026-06-08 03:28:30 +03:00
22 lines
475 B
Python
22 lines
475 B
Python
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,
|
|
)
|