Skip to content
Closed
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Envars: Application Config as Code

[![PyPI version](https://badge.fury.io/py/envars2.svg)](https://badge.fury.io/py/envars2)
[![Documentation Status](https://readthedocs.org/projects/envars/badge/?version=latest)](https://envars.readthedocs.io/en/latest/?badge=latest)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Expand All @@ -24,7 +23,7 @@ Stop juggling `.env` files and start treating your configuration like code.
## Installation

```bash
pip install envars
pip install git+https://github.com/timeoutdigital/envars2.git

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since the package name (envars) differs from the repository name (envars2), it is recommended to use the explicit PEP 508 direct reference syntax. This makes it clear to pip and the user which package is being installed, and helps the dependency resolver.

Suggested change
pip install git+https://github.com/timeoutdigital/envars2.git
pip install "envars @ git+https://github.com/timeoutdigital/envars2.git"

```

## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This tutorial will guide you through the basics of using `envars` to manage your
First, install `envars` using `pip`:

```bash
pip install envars
pip install git+https://github.com/timeoutdigital/envars2.git

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since the package name (envars) differs from the repository name (envars2), using the explicit PEP 508 direct reference syntax is recommended to avoid ambiguity for pip and the user.

Suggested change
pip install git+https://github.com/timeoutdigital/envars2.git
pip install "envars @ git+https://github.com/timeoutdigital/envars2.git"

```

## 2. Initialize Your Project
Expand Down