Skip to content

Commit 3973c86

Browse files
committed
update build readme and add editorconfig
1 parent 226abc8 commit 3973c86

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[*]
2+
charset = utf-8
3+
end_of_line = lf
4+
insert_final_newline = true
5+
trim_trailing_whitespace = true
6+
7+
[*.py]
8+
indent_style = space
9+
indent_size = 4
10+
11+
[*.js]
12+
indent_style = space
13+
indent_size = 2
14+
15+
[*.{yml,yaml}]
16+
indent_style = space
17+
indent_size = 2
18+

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
# jupyter-pgweb-proxy
1+
# jupyter-pgweb-proxy
2+
3+
## Build
4+
5+
```
6+
python3 -m pip install hatch
7+
8+
hatch build
9+
10+
ls -la dist/*
11+
```

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jupyter-pgweb-proxy"
7-
version = "0.0.1"
7+
version = "0.0.2"
88
authors = [
99
{ name="Matus Kosut", email="[email protected]" },
1010
{ name="Hans Stemshaug", email="[email protected]" },
1111
]
12-
description = "A small example package"
12+
description = "Jupyter server proxy for pgweb"
1313
readme = "README.md"
1414
license = { file = "LICENSE.md" }
1515
requires-python = ">=3.8"

0 commit comments

Comments
 (0)