diff --git a/crawlers/moonstreamcrawlers/__init__.py b/crawlers/mooncrawl/__init__.py similarity index 100% rename from crawlers/moonstreamcrawlers/__init__.py rename to crawlers/mooncrawl/__init__.py diff --git a/crawlers/moonstreamcrawlers/cli.py b/crawlers/mooncrawl/cli.py similarity index 100% rename from crawlers/moonstreamcrawlers/cli.py rename to crawlers/mooncrawl/cli.py diff --git a/crawlers/moonstreamcrawlers/esd.py b/crawlers/mooncrawl/esd.py similarity index 100% rename from crawlers/moonstreamcrawlers/esd.py rename to crawlers/mooncrawl/esd.py diff --git a/crawlers/moonstreamcrawlers/ethereum.py b/crawlers/mooncrawl/ethereum.py similarity index 100% rename from crawlers/moonstreamcrawlers/ethereum.py rename to crawlers/mooncrawl/ethereum.py diff --git a/crawlers/moonstreamcrawlers/settings.py b/crawlers/mooncrawl/settings.py similarity index 100% rename from crawlers/moonstreamcrawlers/settings.py rename to crawlers/mooncrawl/settings.py diff --git a/crawlers/moonstreamcrawlers/test_cli.py b/crawlers/mooncrawl/test_cli.py similarity index 100% rename from crawlers/moonstreamcrawlers/test_cli.py rename to crawlers/mooncrawl/test_cli.py diff --git a/crawlers/moonstreamcrawlers/version.py b/crawlers/mooncrawl/version.py similarity index 100% rename from crawlers/moonstreamcrawlers/version.py rename to crawlers/mooncrawl/version.py diff --git a/crawlers/setup.py b/crawlers/setup.py index 07c2277a..0dd6bb8a 100644 --- a/crawlers/setup.py +++ b/crawlers/setup.py @@ -7,7 +7,7 @@ with open("README.md") as ifp: long_description = ifp.read() setup( - name="moonstreamcrawlers", + name="mooncrawl", version=MOONSTREAMCRAWLERS_VERSION, author="Bugout.dev", author_email="engineers@bugout.dev", @@ -30,7 +30,7 @@ setup( ], python_requires=">=3.6", packages=find_packages(), - package_data={"moonstreamcrawlers": ["py.typed"]}, + package_data={"mooncrawl": ["py.typed"]}, zip_safe=False, install_requires=[ "moonstreamdb @ git+https://git@github.com/bugout-dev/moonstream.git@ec3278e192119d1e8a273cfaab6cb53890d2e8e9#egg=moonstreamdb&subdirectory=db", @@ -39,7 +39,5 @@ setup( "web3", ], extras_require={"dev": ["black", "mypy", "types-requests"]}, - entry_points={ - "console_scripts": ["moonstreamcrawlers=moonstreamcrawlers.cli:main"] - }, + entry_points={"console_scripts": ["mooncrawl=mooncrawl.cli:main"]}, )