valar 0.0.5__tar.gz → 0.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valar might be problematic. Click here for more details.
- {valar-0.0.5 → valar-0.0.7}/PKG-INFO +26 -1
- valar-0.0.7/README.md +26 -0
- {valar-0.0.5 → valar-0.0.7}/setup.py +1 -1
- {valar-0.0.5/src/module → valar-0.0.7/src/valar}/channels.py +2 -1
- {valar-0.0.5 → valar-0.0.7}/src/valar.egg-info/PKG-INFO +26 -1
- {valar-0.0.5 → valar-0.0.7}/src/valar.egg-info/SOURCES.txt +2 -2
- valar-0.0.7/src/valar.egg-info/top_level.txt +1 -0
- valar-0.0.5/README.md +0 -1
- valar-0.0.5/src/valar.egg-info/top_level.txt +0 -1
- {valar-0.0.5 → valar-0.0.7}/LICENSE +0 -0
- {valar-0.0.5 → valar-0.0.7}/setup.cfg +0 -0
- {valar-0.0.5/src/module → valar-0.0.7/src/valar}/__init__.py +0 -0
- {valar-0.0.5 → valar-0.0.7}/src/valar.egg-info/dependency_links.txt +0 -0
- {valar-0.0.5 → valar-0.0.7}/src/valar.egg-info/requires.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: valar
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: valar for morghulis
|
|
5
5
|
Author: LYP
|
|
6
6
|
Author-email: liuyinpeng@buaa.edu.cn
|
|
@@ -17,3 +17,28 @@ Dynamic: requires-python
|
|
|
17
17
|
Dynamic: summary
|
|
18
18
|
|
|
19
19
|
valar for morghulis
|
|
20
|
+
|
|
21
|
+
# prepare
|
|
22
|
+
```sh
|
|
23
|
+
python -m pip install --upgrade pip
|
|
24
|
+
```
|
|
25
|
+
```sh
|
|
26
|
+
pip install --upgrade build
|
|
27
|
+
```
|
|
28
|
+
```sh
|
|
29
|
+
pip install twine
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
# publish
|
|
33
|
+
```sh
|
|
34
|
+
rm -r dist
|
|
35
|
+
```
|
|
36
|
+
```sh
|
|
37
|
+
python -m build
|
|
38
|
+
```
|
|
39
|
+
```sh
|
|
40
|
+
twine check dist/*
|
|
41
|
+
```
|
|
42
|
+
```sh
|
|
43
|
+
twine upload dist/*
|
|
44
|
+
```
|
valar-0.0.7/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
valar for morghulis
|
|
2
|
+
|
|
3
|
+
# prepare
|
|
4
|
+
```sh
|
|
5
|
+
python -m pip install --upgrade pip
|
|
6
|
+
```
|
|
7
|
+
```sh
|
|
8
|
+
pip install --upgrade build
|
|
9
|
+
```
|
|
10
|
+
```sh
|
|
11
|
+
pip install twine
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
# publish
|
|
15
|
+
```sh
|
|
16
|
+
rm -r dist
|
|
17
|
+
```
|
|
18
|
+
```sh
|
|
19
|
+
python -m build
|
|
20
|
+
```
|
|
21
|
+
```sh
|
|
22
|
+
twine check dist/*
|
|
23
|
+
```
|
|
24
|
+
```sh
|
|
25
|
+
twine upload dist/*
|
|
26
|
+
```
|
|
@@ -3,8 +3,9 @@ import importlib
|
|
|
3
3
|
import json
|
|
4
4
|
from datetime import datetime
|
|
5
5
|
|
|
6
|
-
from channels.generic.websocket import AsyncJsonWebsocketConsumer
|
|
7
6
|
from channels.layers import get_channel_layer
|
|
7
|
+
|
|
8
|
+
from channels.generic.websocket import AsyncJsonWebsocketConsumer
|
|
8
9
|
from django.core.exceptions import ImproperlyConfigured
|
|
9
10
|
from django.http import JsonResponse
|
|
10
11
|
from django.conf import settings
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: valar
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: valar for morghulis
|
|
5
5
|
Author: LYP
|
|
6
6
|
Author-email: liuyinpeng@buaa.edu.cn
|
|
@@ -17,3 +17,28 @@ Dynamic: requires-python
|
|
|
17
17
|
Dynamic: summary
|
|
18
18
|
|
|
19
19
|
valar for morghulis
|
|
20
|
+
|
|
21
|
+
# prepare
|
|
22
|
+
```sh
|
|
23
|
+
python -m pip install --upgrade pip
|
|
24
|
+
```
|
|
25
|
+
```sh
|
|
26
|
+
pip install --upgrade build
|
|
27
|
+
```
|
|
28
|
+
```sh
|
|
29
|
+
pip install twine
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
# publish
|
|
33
|
+
```sh
|
|
34
|
+
rm -r dist
|
|
35
|
+
```
|
|
36
|
+
```sh
|
|
37
|
+
python -m build
|
|
38
|
+
```
|
|
39
|
+
```sh
|
|
40
|
+
twine check dist/*
|
|
41
|
+
```
|
|
42
|
+
```sh
|
|
43
|
+
twine upload dist/*
|
|
44
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
valar
|
valar-0.0.5/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
valar for morghulis
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|