Skip to content

Commit 53a4c9b

Browse files
committed
Fix CI issues. Fix incorrect package name.
1 parent 5d3c415 commit 53a4c9b

2 files changed

Lines changed: 24 additions & 1 deletion

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## dagster-cloudquery
2+
3+
This implements a CloudQuery resource that can be used within Dagster.
4+
5+
### Installation
6+
7+
```bash
8+
pip install dagster-cloudquery
9+
```

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
from setuptools import find_packages, setup
22

3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
4-
name="cq_dagster_embedded",
7+
name="dagster-cloudquery",
8+
version="0.1.2",
9+
author="CloudQuery",
10+
description="Implements a CloudQuery resource that can be used within Dagster",
11+
long_description=long_description,
12+
long_description_content_type="text/markdown",
513
packages=find_packages(),
614
install_requires=[
715
"dagster",
816
"dagster-cloud"
917
],
18+
classifiers=[
19+
"Programming Language :: Python :: 3",
20+
"License :: OSI Approved :: MIT License",
21+
"Operating System :: OS Independent",
22+
],
23+
python_requires='>=3.6',
1024
)

0 commit comments

Comments
 (0)