Skip to content

Commit

Permalink
Fix CI issues. Fix incorrect package name.
Browse files Browse the repository at this point in the history
  • Loading branch information
marianogappa committed Oct 4, 2024
1 parent 5d3c415 commit 53a4c9b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## dagster-cloudquery

This implements a CloudQuery resource that can be used within Dagster.

### Installation

```bash
pip install dagster-cloudquery
```
16 changes: 15 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
from setuptools import find_packages, setup

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name="cq_dagster_embedded",
name="dagster-cloudquery",
version="0.1.2",
author="CloudQuery",
description="Implements a CloudQuery resource that can be used within Dagster",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"dagster",
"dagster-cloud"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)

0 comments on commit 53a4c9b

Please sign in to comment.