File tree Expand file tree Collapse file tree 3 files changed +22
-23
lines changed Expand file tree Collapse file tree 3 files changed +22
-23
lines changed Original file line number Diff line number Diff line change @@ -99,16 +99,17 @@ ipython_config.py
99
99
# This is especially recommended for binary packages to ensure reproducibility, and is more
100
100
# commonly ignored for libraries.
101
101
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
- # poetry.lock
102
+ poetry.lock
103
103
104
104
# pdm
105
105
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
- pdm.lock
106
+ # pdm.lock
107
107
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
108
# in version control.
109
- # https://pdm.fming.dev/#use-with-ide
110
- .pdm-python
109
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
111
110
.pdm.toml
111
+ .pdm-python
112
+ .pdm-build /
112
113
113
114
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
114
115
__pypackages__ /
Original file line number Diff line number Diff line change
1
+ [virtualenvs ]
2
+ in-project = true
Original file line number Diff line number Diff line change 1
- [project ]
2
- name = " python "
1
+ [tool . poetry ]
2
+ name = " snippets "
3
3
version = " 0.0.0"
4
4
description = " Python scripts"
5
- authors = [
6
- {
name =
" RenChu Wang" ,
email =
" [email protected] " },
7
- ]
8
- dependencies = []
9
- requires-python = " >=3.11"
5
+ authors = [
" RenChu Wang <[email protected] >" ]
6
+ license = " MIT"
10
7
readme = " README.md"
11
- license = { text = " MIT " }
8
+ package-mode = false
12
9
10
+ [tool .poetry .dependencies ]
11
+ python = " ^3.11"
13
12
14
- [tool .pdm ]
15
- distribution = " false"
13
+ [tool .poetry .group .dev .dependencies ]
14
+ black = " ^24.10.0"
15
+ isort = " ^5.13.2"
16
+ autoflake = " ^2.3.1"
17
+ mypy = " ^1.13.0"
16
18
17
- [tool .pdm .dev-dependencies ]
18
- format = [
19
- " autoflake>=2.2.1" ,
20
- " black>=24.2.0" ,
21
- " isort>=5.13.2" ,
22
- ]
23
- type = [
24
- " mypy>=1.8.0" ,
25
- ]
19
+ [build-system ]
20
+ requires = [" poetry-core" ]
21
+ build-backend = " poetry.core.masonry.api"
26
22
27
23
[tool .autoflake ]
28
24
in-place = true
You can’t perform that action at this time.
0 commit comments