Mercurial > libervia-web
comparison .hgignore @ 1522:a44f77559279
installation: moved from `setup.py` to `pyproject.toml`:
- following backend change, installation is now using `pyproject.toml`, and legacy
`setup.py` as well as other legacy files have been deleted/updated.
- [hatch](https://hatch.pypa.io) is now used as main building tool. However, thanks to the
use of standards, other tools can be used too.
- `VERSION` file has been deleted, in favor or using directly `__version__`, in
`libervia/web/__init__.py`. Version can be updated directly from Hatch
- update .hgignore
- several dependencies version bump, with code update to adapt to changes.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 07 Jun 2023 15:28:10 +0200 |
parents | a5019e62c3e9 |
children |
comparison
equal
deleted
inserted
replaced
1521:0d517b596568 | 1522:a44f77559279 |
---|---|
1 syntax: glob | 1 syntax: glob |
2 .build | |
3 build | |
4 ctags_links/ | |
5 dist/ | |
6 .eggs/ | |
7 env/ | |
8 MANIFEST | |
9 .mypy_cache/ | |
10 *.orig | |
2 *.pyc | 11 *.pyc |
12 *.pyo | |
13 .pytest_cache | |
3 *.pyv | 14 *.pyv |
15 Session.vim | |
16 stubs/ | |
17 *.swo | |
4 *.swp | 18 *.swp |
5 *.swo | |
6 *.js | |
7 tags | 19 tags |
20 tests/e2e/report* | |
21 _trial_temp/ | |
8 twistd.log | 22 twistd.log |
9 twistd.pid | 23 twistd.pid |
10 sat.egg-info | 24 twisted/plugins/dropin.cache |
11 *.un~ | 25 *.un~ |
12 dist | 26 .vim |
13 MANIFEST | 27 .vscode |
14 *.sh | |
15 build/ | |
16 Session.vim | |
17 ctags_links/ | |
18 html/ |