Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ First, install your Dagster code as a Python package. By using the `--editable`
pip install -e ".[dev]"
```

Then, start the Dagit web server:
Then, start the Dagster web server:

```bash
dagit
dagster dev
```

Open http://localhost:3000 with your browser to see the project.
Expand Down Expand Up @@ -242,7 +242,7 @@ Using environment variables, you can define various configuration options for yo
Check out [Using environment variables and secrets](https://docs.dagster.io/guides/dagster/using-environment-variables-and-secrets) for more info and examples.
### Adding new Python dependencies

You can specify new Python dependencies in `setup.py`.
You can specify new Python dependencies in `pyproject.toml`.

### Testing

Expand Down
23 changes: 22 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
[project]
name = "quickstart_etl"
version = "0.1.0"
description = "Dagster project for ETL quickstart."
readme = "README.md"
requires-python = ">=3.8,<3.13"
dependencies = [
"boto3",
"dagster",
"dagster-cloud",
"matplotlib",
"pandas",
"textblob",
"tweepy",
"wordcloud",
]

[project.optional-dependencies]
dev = ["dagster-webserver", "pytest"]

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.dagster]
module_name = "quickstart_etl"
module_name = "quickstart_etl.definitions"
code_location_name = "quickstart_etl"
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

17 changes: 0 additions & 17 deletions setup.py

This file was deleted.