subscriptions-to-csv 1.1.4__tar.gz → 1.7.1__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.
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/PKG-INFO +24 -9
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/README.md +19 -7
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/pyproject.toml +8 -2
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv/__init__.py +1 -1
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/PKG-INFO +24 -9
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/SOURCES.txt +1 -0
- subscriptions_to_csv-1.7.1/subscriptions_to_csv.egg-info/requires.txt +4 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/setup.cfg +0 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv/cli.py +0 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv/converter.py +0 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/dependency_links.txt +0 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/entry_points.txt +0 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/top_level.txt +0 -0
- {subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/tests/test_main.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: subscriptions-to-csv
|
|
3
|
-
Version: 1.1
|
|
3
|
+
Version: 1.7.1
|
|
4
4
|
Summary: Convert subscription lists to CSV with EUR conversion
|
|
5
5
|
Author: Subscription Converter Team
|
|
6
|
-
License
|
|
6
|
+
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/MBanucu/subscriptions-to-csv
|
|
8
8
|
Keywords: csv,subscriptions,eur,conversion,finance
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -22,6 +22,9 @@ Classifier: Intended Audience :: Developers
|
|
|
22
22
|
Classifier: Intended Audience :: End Users/Desktop
|
|
23
23
|
Requires-Python: >=3.6
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
27
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
25
28
|
|
|
26
29
|
# Subscriptions to CSV
|
|
27
30
|
|
|
@@ -314,11 +317,13 @@ nix run .#subscriptions-to-csv -- --help
|
|
|
314
317
|
|
|
315
318
|
### Release Process
|
|
316
319
|
|
|
317
|
-
The project uses automated semantic versioning. When you push commits to the `main` branch:
|
|
320
|
+
The project uses automated semantic versioning with cutting-edge tooling. When you push commits to the `main` branch:
|
|
318
321
|
|
|
319
|
-
1. **Conventional commits** trigger automatic version
|
|
320
|
-
2. **
|
|
321
|
-
3. **
|
|
322
|
+
1. **Conventional commits** trigger automatic version analysis
|
|
323
|
+
2. **Semantic-release v25.0.2** determines version bumps and generates changelogs
|
|
324
|
+
3. **GitHub Actions v6.0.0** handles the complete release pipeline
|
|
325
|
+
4. **Version files** are automatically updated and committed
|
|
326
|
+
5. **PyPI publishing** via trusted publisher authentication
|
|
322
327
|
|
|
323
328
|
**Example workflow**:
|
|
324
329
|
```bash
|
|
@@ -326,23 +331,33 @@ The project uses automated semantic versioning. When you push commits to the `ma
|
|
|
326
331
|
git add .
|
|
327
332
|
git commit -m "feat: add new export format"
|
|
328
333
|
|
|
329
|
-
# Push to main - triggers automated release
|
|
334
|
+
# Push to main - triggers automated release (13-16 seconds)
|
|
330
335
|
git push origin main
|
|
331
336
|
```
|
|
332
337
|
|
|
338
|
+
**Tools Used**:
|
|
339
|
+
- **semantic-release**: v25.0.2 (latest stable)
|
|
340
|
+
- **GitHub Action**: cycjimmy/semantic-release-action v6.0.0
|
|
341
|
+
- **Node.js**: 24+ compatible
|
|
342
|
+
- **Plugins**: changelog, git (optimized for Python projects)
|
|
343
|
+
|
|
333
344
|
### Code Style
|
|
334
345
|
|
|
335
346
|
See AGENTS.md for detailed coding guidelines.
|
|
336
347
|
|
|
337
348
|
## Releases
|
|
338
349
|
|
|
339
|
-
This project uses automated semantic versioning and publishing
|
|
350
|
+
This project uses automated semantic versioning and publishing with **semantic-release v25.0.2** and **cycjimmy/semantic-release-action v6.0.0**:
|
|
351
|
+
|
|
352
|
+
🎉 **Fully automated release system now active!**
|
|
340
353
|
|
|
341
354
|
### Automated Releases
|
|
342
355
|
- **Trigger**: Push to `main` branch with conventional commits
|
|
343
356
|
- **Versioning**: Automatic based on commit types (`feat:`, `fix:`, etc.)
|
|
344
|
-
- **Publishing**: Automatic PyPI publishing via
|
|
357
|
+
- **Publishing**: Automatic PyPI publishing via trusted publisher
|
|
345
358
|
- **Changelog**: Automatically generated from commit messages
|
|
359
|
+
- **Performance**: 13-16 second release cycles
|
|
360
|
+
- **Compatibility**: Latest Node.js 24 and plugin ecosystem support
|
|
346
361
|
|
|
347
362
|
### Commit Types & Releases
|
|
348
363
|
|
|
@@ -289,11 +289,13 @@ nix run .#subscriptions-to-csv -- --help
|
|
|
289
289
|
|
|
290
290
|
### Release Process
|
|
291
291
|
|
|
292
|
-
The project uses automated semantic versioning. When you push commits to the `main` branch:
|
|
292
|
+
The project uses automated semantic versioning with cutting-edge tooling. When you push commits to the `main` branch:
|
|
293
293
|
|
|
294
|
-
1. **Conventional commits** trigger automatic version
|
|
295
|
-
2. **
|
|
296
|
-
3. **
|
|
294
|
+
1. **Conventional commits** trigger automatic version analysis
|
|
295
|
+
2. **Semantic-release v25.0.2** determines version bumps and generates changelogs
|
|
296
|
+
3. **GitHub Actions v6.0.0** handles the complete release pipeline
|
|
297
|
+
4. **Version files** are automatically updated and committed
|
|
298
|
+
5. **PyPI publishing** via trusted publisher authentication
|
|
297
299
|
|
|
298
300
|
**Example workflow**:
|
|
299
301
|
```bash
|
|
@@ -301,23 +303,33 @@ The project uses automated semantic versioning. When you push commits to the `ma
|
|
|
301
303
|
git add .
|
|
302
304
|
git commit -m "feat: add new export format"
|
|
303
305
|
|
|
304
|
-
# Push to main - triggers automated release
|
|
306
|
+
# Push to main - triggers automated release (13-16 seconds)
|
|
305
307
|
git push origin main
|
|
306
308
|
```
|
|
307
309
|
|
|
310
|
+
**Tools Used**:
|
|
311
|
+
- **semantic-release**: v25.0.2 (latest stable)
|
|
312
|
+
- **GitHub Action**: cycjimmy/semantic-release-action v6.0.0
|
|
313
|
+
- **Node.js**: 24+ compatible
|
|
314
|
+
- **Plugins**: changelog, git (optimized for Python projects)
|
|
315
|
+
|
|
308
316
|
### Code Style
|
|
309
317
|
|
|
310
318
|
See AGENTS.md for detailed coding guidelines.
|
|
311
319
|
|
|
312
320
|
## Releases
|
|
313
321
|
|
|
314
|
-
This project uses automated semantic versioning and publishing
|
|
322
|
+
This project uses automated semantic versioning and publishing with **semantic-release v25.0.2** and **cycjimmy/semantic-release-action v6.0.0**:
|
|
323
|
+
|
|
324
|
+
🎉 **Fully automated release system now active!**
|
|
315
325
|
|
|
316
326
|
### Automated Releases
|
|
317
327
|
- **Trigger**: Push to `main` branch with conventional commits
|
|
318
328
|
- **Versioning**: Automatic based on commit types (`feat:`, `fix:`, etc.)
|
|
319
|
-
- **Publishing**: Automatic PyPI publishing via
|
|
329
|
+
- **Publishing**: Automatic PyPI publishing via trusted publisher
|
|
320
330
|
- **Changelog**: Automatically generated from commit messages
|
|
331
|
+
- **Performance**: 13-16 second release cycles
|
|
332
|
+
- **Compatibility**: Latest Node.js 24 and plugin ecosystem support
|
|
321
333
|
|
|
322
334
|
### Commit Types & Releases
|
|
323
335
|
|
|
@@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "subscriptions-to-csv"
|
|
7
|
-
version = "1.1
|
|
7
|
+
version = "1.7.1"
|
|
8
8
|
description = "Convert subscription lists to CSV with EUR conversion"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
license = "MIT"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
11
|
requires-python = ">=3.6"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "Subscription Converter Team"}
|
|
@@ -31,6 +31,12 @@ classifiers = [
|
|
|
31
31
|
dependencies = []
|
|
32
32
|
keywords = ["csv", "subscriptions", "eur", "conversion", "finance"]
|
|
33
33
|
|
|
34
|
+
[project.optional-dependencies]
|
|
35
|
+
dev = [
|
|
36
|
+
"pytest>=7.0.0",
|
|
37
|
+
"pytest-cov>=4.0.0",
|
|
38
|
+
]
|
|
39
|
+
|
|
34
40
|
[project.urls]
|
|
35
41
|
Homepage = "https://github.com/MBanucu/subscriptions-to-csv"
|
|
36
42
|
|
{subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/PKG-INFO
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: subscriptions-to-csv
|
|
3
|
-
Version: 1.1
|
|
3
|
+
Version: 1.7.1
|
|
4
4
|
Summary: Convert subscription lists to CSV with EUR conversion
|
|
5
5
|
Author: Subscription Converter Team
|
|
6
|
-
License
|
|
6
|
+
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/MBanucu/subscriptions-to-csv
|
|
8
8
|
Keywords: csv,subscriptions,eur,conversion,finance
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -22,6 +22,9 @@ Classifier: Intended Audience :: Developers
|
|
|
22
22
|
Classifier: Intended Audience :: End Users/Desktop
|
|
23
23
|
Requires-Python: >=3.6
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
27
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
25
28
|
|
|
26
29
|
# Subscriptions to CSV
|
|
27
30
|
|
|
@@ -314,11 +317,13 @@ nix run .#subscriptions-to-csv -- --help
|
|
|
314
317
|
|
|
315
318
|
### Release Process
|
|
316
319
|
|
|
317
|
-
The project uses automated semantic versioning. When you push commits to the `main` branch:
|
|
320
|
+
The project uses automated semantic versioning with cutting-edge tooling. When you push commits to the `main` branch:
|
|
318
321
|
|
|
319
|
-
1. **Conventional commits** trigger automatic version
|
|
320
|
-
2. **
|
|
321
|
-
3. **
|
|
322
|
+
1. **Conventional commits** trigger automatic version analysis
|
|
323
|
+
2. **Semantic-release v25.0.2** determines version bumps and generates changelogs
|
|
324
|
+
3. **GitHub Actions v6.0.0** handles the complete release pipeline
|
|
325
|
+
4. **Version files** are automatically updated and committed
|
|
326
|
+
5. **PyPI publishing** via trusted publisher authentication
|
|
322
327
|
|
|
323
328
|
**Example workflow**:
|
|
324
329
|
```bash
|
|
@@ -326,23 +331,33 @@ The project uses automated semantic versioning. When you push commits to the `ma
|
|
|
326
331
|
git add .
|
|
327
332
|
git commit -m "feat: add new export format"
|
|
328
333
|
|
|
329
|
-
# Push to main - triggers automated release
|
|
334
|
+
# Push to main - triggers automated release (13-16 seconds)
|
|
330
335
|
git push origin main
|
|
331
336
|
```
|
|
332
337
|
|
|
338
|
+
**Tools Used**:
|
|
339
|
+
- **semantic-release**: v25.0.2 (latest stable)
|
|
340
|
+
- **GitHub Action**: cycjimmy/semantic-release-action v6.0.0
|
|
341
|
+
- **Node.js**: 24+ compatible
|
|
342
|
+
- **Plugins**: changelog, git (optimized for Python projects)
|
|
343
|
+
|
|
333
344
|
### Code Style
|
|
334
345
|
|
|
335
346
|
See AGENTS.md for detailed coding guidelines.
|
|
336
347
|
|
|
337
348
|
## Releases
|
|
338
349
|
|
|
339
|
-
This project uses automated semantic versioning and publishing
|
|
350
|
+
This project uses automated semantic versioning and publishing with **semantic-release v25.0.2** and **cycjimmy/semantic-release-action v6.0.0**:
|
|
351
|
+
|
|
352
|
+
🎉 **Fully automated release system now active!**
|
|
340
353
|
|
|
341
354
|
### Automated Releases
|
|
342
355
|
- **Trigger**: Push to `main` branch with conventional commits
|
|
343
356
|
- **Versioning**: Automatic based on commit types (`feat:`, `fix:`, etc.)
|
|
344
|
-
- **Publishing**: Automatic PyPI publishing via
|
|
357
|
+
- **Publishing**: Automatic PyPI publishing via trusted publisher
|
|
345
358
|
- **Changelog**: Automatically generated from commit messages
|
|
359
|
+
- **Performance**: 13-16 second release cycles
|
|
360
|
+
- **Compatibility**: Latest Node.js 24 and plugin ecosystem support
|
|
346
361
|
|
|
347
362
|
### Commit Types & Releases
|
|
348
363
|
|
{subscriptions_to_csv-1.1.4 → subscriptions_to_csv-1.7.1}/subscriptions_to_csv.egg-info/SOURCES.txt
RENAMED
|
@@ -7,5 +7,6 @@ subscriptions_to_csv.egg-info/PKG-INFO
|
|
|
7
7
|
subscriptions_to_csv.egg-info/SOURCES.txt
|
|
8
8
|
subscriptions_to_csv.egg-info/dependency_links.txt
|
|
9
9
|
subscriptions_to_csv.egg-info/entry_points.txt
|
|
10
|
+
subscriptions_to_csv.egg-info/requires.txt
|
|
10
11
|
subscriptions_to_csv.egg-info/top_level.txt
|
|
11
12
|
tests/test_main.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|