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.
@@ -0,0 +1,20 @@
1
+ *.pyc
2
+ *.swp
3
+ develop-eggs
4
+ dist
5
+ src/*.egg-info
6
+ tags
7
+ build
8
+ eggs
9
+ .venv
10
+ .project
11
+ .pydevproject
12
+ *.sublime*
13
+ **/.DS_Store
14
+ .idea
15
+ .vscode
16
+ __pycache__
17
+ .github
18
+ # Output files
19
+ *.csv
20
+ *.ofx
@@ -0,0 +1 @@
1
+ include README.rst
@@ -0,0 +1,17 @@
1
+ all: test mypy black
2
+
3
+ PHONY: test
4
+ test:
5
+ pytest
6
+
7
+ PHONY: coverage
8
+ coverage: bin/pytest
9
+ pytest --cov src/ofxstatement
10
+
11
+ .PHONY: black
12
+ black:
13
+ black setup.py src tests
14
+
15
+ .PHONY: mypy
16
+ mypy:
17
+ mypy src tests
@@ -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"