Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit913829a

Browse files
committed
Document how to use Poetry
Document how to use Poetry for setting up a dev environment and forbuilding & publishing a new release.
1 parent96a7a7d commit913829a

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

‎README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,20 @@ licensed under the [Apache License, version 2.0](https://www.apache.org/licenses
2424

2525
##Security
2626

27-
2827
Because of how Python internally stores numbers, it is very hard (if not impossible) to make a pure-Python program secure against timing attacks. This library is no exception, so use it with care. Seehttps://securitypitfalls.wordpress.com/2018/08/03/constant-time-compare-in-python/ for more info.
2928

29+
##Setup of Development Environment
30+
31+
```
32+
python3 -m venv .venv
33+
. ./.venv/bin/activate
34+
pip install poetry
35+
poetry install
36+
```
37+
38+
##Publishing a New Release
3039

40+
```
41+
. ./.venv/bin/activate
42+
poetry publish --build
43+
```

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp