Skip to content

Commit 0f1909e

Browse files
committed
Migrate to corp repo
1 parent 3a9c965 commit 0f1909e

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
![license](https://img.shields.io/pypi/l/runtime-config-py?style=for-the-badge) ![python version](https://img.shields.io/pypi/pyversions/runtime-config-py?style=for-the-badge) [![version](https://img.shields.io/pypi/v/runtime-config-py?style=for-the-badge)](https://pypi.org/project/runtime-config-py/) ![coverage](https://img.shields.io/codecov/c/github/aleksey925/runtime-config-py/master?style=for-the-badge) [![tests status](https://img.shields.io/github/workflow/status/aleksey925/runtime-config-py/Tests/master?style=for-the-badge)](https://github.com/aleksey925/runtime-config-py/actions?query=branch%3Amaster) [![](https://img.shields.io/pypi/dm/runtime-config-py?style=for-the-badge)](https://pypi.org/project/runtime-config-py/)
1+
![license](https://img.shields.io/pypi/l/runtime-config-py?style=for-the-badge) ![python version](https://img.shields.io/pypi/pyversions/runtime-config-py?style=for-the-badge) [![version](https://img.shields.io/pypi/v/runtime-config-py?style=for-the-badge)](https://pypi.org/project/runtime-config-py/) [![coverage](https://img.shields.io/codecov/c/github/runtime-config/runtime-config-py/master?style=for-the-badge)](https://app.codecov.io/gh/runtime-config/runtime-config-py) [![tests status](https://img.shields.io/github/workflow/status/runtime-config/runtime-config-py/Tests/master?style=for-the-badge)](https://github.com/runtime-config/runtime-config-py/actions?query=branch%3Amaster) [![](https://img.shields.io/pypi/dm/runtime-config-py?style=for-the-badge)](https://pypi.org/project/runtime-config-py/)
22

33
runtime-config-py
44
=================
55

66
This library allows you to update project settings at runtime. In its basic use case, it is just a client for the
7-
[server](https://github.com/aleksey925/runtime-config), but if necessary, you can implement your adapter for the
7+
[server](https://github.com/runtime-config/runtime-config), but if necessary, you can implement your adapter for the
88
desired source and get settings from them.
99

1010
runtime-config-py supports Python 3.8+.
@@ -39,7 +39,7 @@ pip install runtime-config-py
3939
Or it can be installed directly from git:
4040

4141
```
42-
pip install git+https://github.com/aleksey925/runtime-config-py.git
42+
pip install git+https://github.com/runtime-config/runtime-config-py.git
4343
```
4444

4545
# Usage
@@ -75,7 +75,7 @@ app.add_routes([web.get('/', hello)])
7575
web.run_app(app, port=5000)
7676
```
7777

78-
Before running this code, you need to run [server](https://github.com/aleksey925/runtime-config) from which this
78+
Before running this code, you need to run [server](https://github.com/runtime-config/runtime-config) from which this
7979
library can take new values for your variables.
8080
If you don't do this, nothing bad will not happen. You simply cannot change the value of the name variable at runtime :)
8181

@@ -99,7 +99,7 @@ print(config.get('name', default='Dima'))
9999

100100
# Backend
101101

102-
Currently, only 1 [backend](https://github.com/aleksey925/runtime-config) is supported. Later, support for other
102+
Currently, only 1 [backend](https://github.com/runtime-config/runtime-config) is supported. Later, support for other
103103
backends, such as redis, will probably be added to the library, but this is not in the nearest plans.
104104

105105
If you need support for another settings storage source right now, you can write your own source. Implementing this is
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
aiohttp==3.8.1
2-
git+https://github.com/aleksey925/runtime-config-py.git
2+
git+https://github.com/runtime-config/runtime-config-py.git

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name = "runtime-config-py"
33
version = "0.0.3"
44
description = "Library for runtime updating project settings."
55
license = "MIT"
6-
authors = ["Aleksey Petrunnik <petrunnik.a@mail.ru>"]
7-
maintainers = ["Aleksey Petrunnik <petrunnik.a@mail.ru>"]
8-
repository = "https://github.com/aleksey925/runtime-config-py"
6+
authors = ["Aleksey Petrunnik <petrunnik.a@gmail.com>"]
7+
maintainers = ["Aleksey Petrunnik <petrunnik.a@gmail.com>"]
8+
repository = "https://github.com/runtime-config/runtime-config-py"
99
packages = [{ include = "runtime_config", from = "src" }]
1010
readme = "README.md"
1111
classifiers = [

0 commit comments

Comments
 (0)