ofxstatement-upday 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ofxstatement_upday-1.0.0/.gitignore +20 -0
- ofxstatement_upday-1.0.0/MANIFEST.in +1 -0
- ofxstatement_upday-1.0.0/Makefile +17 -0
- ofxstatement_upday-1.0.0/PKG-INFO +28 -0
- ofxstatement_upday-1.0.0/Pipfile +20 -0
- ofxstatement_upday-1.0.0/Pipfile.lock +643 -0
- ofxstatement_upday-1.0.0/README.md +196 -0
- ofxstatement_upday-1.0.0/input.txt +1 -0
- ofxstatement_upday-1.0.0/pyproject.toml +49 -0
- ofxstatement_upday-1.0.0/setup.cfg +4 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday/__init__.py +3 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday/upday.py +1080 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday.egg-info/PKG-INFO +28 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday.egg-info/SOURCES.txt +18 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday.egg-info/dependency_links.txt +1 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday.egg-info/entry_points.txt +2 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday.egg-info/requires.txt +4 -0
- ofxstatement_upday-1.0.0/src/ofxstatement_upday.egg-info/top_level.txt +1 -0
- ofxstatement_upday-1.0.0/tests/test_sample.py +16 -0
- ofxstatement_upday-1.0.0/tests/test_upday.py +51 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include README.rst
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ofxstatement-upday
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Plugin per ofxstatement per importare transazioni buoni pasto UpDay
|
|
5
|
+
Author-email: Alfystar <alfystar1701@gmail.com>
|
|
6
|
+
License: GPLv3
|
|
7
|
+
Project-URL: Homepage, https://github.com/Alfystar/ofxstatement-upday
|
|
8
|
+
Project-URL: Repository, https://github.com/Alfystar/ofxstatement-upday
|
|
9
|
+
Project-URL: Issues, https://github.com/Alfystar/ofxstatement-upday/issues
|
|
10
|
+
Keywords: ofx,banking,statement,upday,buoni pasto
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Natural Language :: Italian
|
|
18
|
+
Classifier: Topic :: Office/Business :: Financial :: Accounting
|
|
19
|
+
Classifier: Topic :: Utilities
|
|
20
|
+
Classifier: Environment :: Console
|
|
21
|
+
Classifier: Operating System :: OS Independent
|
|
22
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Description-Content-Type: text/x-rst
|
|
25
|
+
Requires-Dist: ofxstatement
|
|
26
|
+
Requires-Dist: selenium>=4.0.0
|
|
27
|
+
Requires-Dist: beautifulsoup4>=4.9.0
|
|
28
|
+
Requires-Dist: webdriver-manager>=3.8.0
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[[source]]
|
|
2
|
+
name = "pypi"
|
|
3
|
+
url = "https://pypi.org/simple"
|
|
4
|
+
verify_ssl = true
|
|
5
|
+
|
|
6
|
+
[dev-packages]
|
|
7
|
+
mypy = "*"
|
|
8
|
+
pytest = "*"
|
|
9
|
+
black = "*"
|
|
10
|
+
exceptiongroup = "*"
|
|
11
|
+
build = "*"
|
|
12
|
+
tomli = "*"
|
|
13
|
+
|
|
14
|
+
[packages]
|
|
15
|
+
ofxstatement = "*"
|
|
16
|
+
ofxstatement-upday = {editable = true,path = "."}
|
|
17
|
+
selenium = ">=4.0.0"
|
|
18
|
+
webdriver-manager = ">=3.8.0"
|
|
19
|
+
beautifulsoup4 = ">=4.11.0"
|
|
20
|
+
lxml = ">=4.9.0"
|