File tree Expand file tree Collapse file tree 2 files changed +18
-7
lines changed Expand file tree Collapse file tree 2 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 1
1
"""Python Implementation of OCPI"""
2
2
3
- __version__ = "2023.12.15 "
3
+ __version__ = "2023.12.16 "
4
4
5
5
from .core import enums , data_types
6
6
from .main import get_application
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [
3
- " hatchling>=1.18.0" ,
4
- ]
2
+ requires = [" hatchling>=1.18.0" ]
5
3
build-backend = " hatchling.build"
6
4
5
+ [tool .hatch .build .targets .wheel ]
6
+ packages = [" py_ocpi" ]
7
+ include = [" README.md" , " LICENSE" ]
8
+
9
+ [tool .hatch .build .targets .sdist ]
10
+ exclude = [
11
+ " /docs/" ,
12
+ " /.github/" ,
13
+ " /tests/" ,
14
+ " /.gitignore" ,
15
+ " /.pre-commit" ,
16
+ " /Pipfile" ,
17
+ " /Pipfile.lock" ,
18
+ " /readthedocs.yaml" ,
19
+ ]
20
+
7
21
[tool .black ]
8
22
line-length = 80
9
23
target-version = [" py311" ]
@@ -51,9 +65,6 @@ Repository = "https://github.com/extrawest/extrawest_ocpi"
51
65
[tool .hatch .version ]
52
66
path = " py_ocpi/__init__.py"
53
67
54
- [tool .hatch .build .targets .wheel ]
55
- packages = [" py_ocpi/__init__.py" ]
56
-
57
68
[tool .flake8 ]
58
69
max-line-length = 88
59
70
per-file-ignores = [
You can’t perform that action at this time.
0 commit comments