Skip to content

Commit

Permalink
Rename to astro-providers-venv
Browse files Browse the repository at this point in the history
  • Loading branch information
ashb committed Mar 9, 2023
1 parent 2aeecd4 commit df0cb08
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .astro-registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# Registry as well as top-level Provider metadata. The file should not be packaged and solely lives in the
# repo. The modules listed should pertain to latest, released version of the repo.

package-name: airflow-provider-venv
package-name: astro-providers-venv
display-name: Venv Provider
description: Easily create and use Python Virtualenvs in Apache Airflow
docs_url: https://github.com/astronomer/airflow-provider-venv/blob/main/README.md
docs_url: https://github.com/astronomer/astro-providers-venv/blob/main/README.md

# The next sections should be organized by module type (e.g. operators, hooks, functions, decorators, etc.).
#
# Within each section, the ``module`` value should be the path.to.the.module.specifically.
# For example, if the import path for a function is `from sample_provider.hooks.sample_hook import SampleHook` then the
# value should be "sample_provider.hooks.sample_hook.SampleHook".

operators:
- module: sample_provider.operators.sample_operator.SampleOperator
decorators:
- module: astronomer.providers.decorators.venv
4 changes: 2 additions & 2 deletions provider/astronomer/providers/venv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

def get_provider_info():
return {
"package-name": "airflow-provider-venv",
"name": "airflow-provider-venv",
"package-name": "astro-providers-venv",
"name": "astro-providers-venv",
"description": "Easily create and use Python Virtualenvs in Apache Airflow",
"task-decorators": [
{
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "airflow-provider-venv"
name = "astro-providers-venv"
authors = [
{name = "Ash Berlin-Taylor", email = "[email protected]"},
{name = "Ian Buss", email = "[email protected]"},
Expand All @@ -15,7 +15,7 @@ classifiers = [
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
]
urls = {Homepage = "http://astronomer.io/"}
urls = {Source = "https://github.com/astronomer/astro-providers-venv"}
dynamic = ["version"]
requires-python = "~=3.7"
dependencies = ["apache-airflow>=2.4"]
Expand Down

0 comments on commit df0cb08

Please sign in to comment.