diff --git a/gfi/__init__.py b/good-first-issues/__init__.py similarity index 100% rename from gfi/__init__.py rename to good-first-issues/__init__.py diff --git a/gfi/graphql/__init__.py b/good-first-issues/graphql/__init__.py similarity index 100% rename from gfi/graphql/__init__.py rename to good-first-issues/graphql/__init__.py diff --git a/gfi/graphql/commands.py b/good-first-issues/graphql/commands.py similarity index 100% rename from gfi/graphql/commands.py rename to good-first-issues/graphql/commands.py diff --git a/gfi/graphql/queries.py b/good-first-issues/graphql/queries.py similarity index 100% rename from gfi/graphql/queries.py rename to good-first-issues/graphql/queries.py diff --git a/gfi/graphql/services.py b/good-first-issues/graphql/services.py similarity index 100% rename from gfi/graphql/services.py rename to good-first-issues/graphql/services.py diff --git a/gfi/main.py b/good-first-issues/main.py similarity index 100% rename from gfi/main.py rename to good-first-issues/main.py diff --git a/gfi/rest/__init__.py b/good-first-issues/rest/__init__.py similarity index 100% rename from gfi/rest/__init__.py rename to good-first-issues/rest/__init__.py diff --git a/gfi/rest/commands.py b/good-first-issues/rest/commands.py similarity index 100% rename from gfi/rest/commands.py rename to good-first-issues/rest/commands.py diff --git a/gfi/rest/helpers.py b/good-first-issues/rest/helpers.py similarity index 100% rename from gfi/rest/helpers.py rename to good-first-issues/rest/helpers.py diff --git a/gfi/rest/services.py b/good-first-issues/rest/services.py similarity index 100% rename from gfi/rest/services.py rename to good-first-issues/rest/services.py diff --git a/gfi/utils/__init__.py b/good-first-issues/utils/__init__.py similarity index 100% rename from gfi/utils/__init__.py rename to good-first-issues/utils/__init__.py diff --git a/setup.py b/setup.py index 035e1ad..46f5583 100644 --- a/setup.py +++ b/setup.py @@ -23,12 +23,13 @@ long_description_content_type="text/markdown", install_requires=requirements, extras_require={"dev": requirements_dev}, - entry_points={"console_scripts": ["gfi = gfi.main:cli"]}, + entry_points={"console_scripts": ["gfi = good-first-issues.main:cli"]}, classifiers=[ "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", - "Operating System :: POSIX :: Linux", - "Development Status :: 1 - Planning", + "Operating System :: POSIX :: Independent", + "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", ], )