Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit fcbf28a

Browse files
committed
movs refactoring
1 parent d18260d commit fcbf28a

35 files changed

+1306
-599
lines changed

.derived

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/.git
2+
/.project
3+
/.settings
4+
/build
5+
6+
*.egg-info
7+
**/__pycache__
8+
.*_cache
9+
10+
/src/gen

.gitignore

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
/.mypy_cache/
2-
*.egg-info/
3-
__pycache__/
4-
/.pytest_cache/
1+
/.git
2+
/build
3+
4+
*.egg-info
5+
**/__pycache__
6+
.*_cache
7+
/.project
8+
/.settings/

.isort.cfg

Lines changed: 0 additions & 7 deletions
This file was deleted.

.pydevproject

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<?eclipse-pydev version="1.0"?><pydev_project>
3-
4-
5-
6-
7-
8-
3+
4+
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Default</pydev_property>
5+
96
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python interpreter</pydev_property>
10-
11-
12-
13-
14-
15-
16-
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">venv</pydev_property>
17-
18-
19-
20-
21-
22-
23-
24-
25-
26-
27-
7+
288
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
29-
<path>/${PROJECT_DIR_NAME}</path>
9+
<path>/${PROJECT_DIR_NAME}/src</path>
10+
<path>/${PROJECT_DIR_NAME}/tests</path>
3011
</pydev_pathproperty>
12+
3113
</pydev_project>

Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: list
2+
list:
3+
@grep '^\w*:' Makefile
4+
5+
.PHONY: test
6+
test:
7+
. ../venv/bin/activate; PYTHONPATH=tests:src python -m unittest discover -s tests
8+
9+
.PHONY: update
10+
update:
11+
. ../venv/bin/activate; python -mpip install -U -e '.[devtools]'
12+
13+
.PHONY: lint
14+
lint:
15+
. ../venv/bin/activate; ruff format .; ruff .; mypy .

movs/iterhelper.py

Lines changed: 0 additions & 11 deletions
This file was deleted.

movs/postepay/__init__.py

Lines changed: 0 additions & 96 deletions
This file was deleted.

movs/scansioni/__init__.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

movs/scansioni/__main__.py

Lines changed: 0 additions & 52 deletions
This file was deleted.

movs/test_estrattoconto.py

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)