TestDataX 0.1.0__tar.gz → 0.1.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.
Files changed (25) hide show
  1. {testdatax-0.1.0 → testdatax-0.1.1}/PKG-INFO +9 -32
  2. {testdatax-0.1.0 → testdatax-0.1.1}/README.md +8 -31
  3. {testdatax-0.1.0 → testdatax-0.1.1}/pyproject.toml +14 -1
  4. {testdatax-0.1.0 → testdatax-0.1.1}/src/__init__.py +1 -1
  5. {testdatax-0.1.0 → testdatax-0.1.1}/LICENSE +0 -0
  6. {testdatax-0.1.0 → testdatax-0.1.1}/src/cli.py +0 -0
  7. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/__init__.py +0 -0
  8. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/base_exporter.py +0 -0
  9. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/csv_exporter.py +0 -0
  10. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/json_exporter.py +0 -0
  11. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/mssql_exporter.py +0 -0
  12. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/mysql_exporter.py +0 -0
  13. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/oracle_exporter.py +0 -0
  14. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/orc_exporter.py +0 -0
  15. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/parquet_exporter.py +0 -0
  16. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/__init__.py +0 -0
  17. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/chunker.py +0 -0
  18. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/constants.py +0 -0
  19. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/exporter_config.py +0 -0
  20. {testdatax-0.1.0 → testdatax-0.1.1}/src/exporters/utils/formatters.py +0 -0
  21. {testdatax-0.1.0 → testdatax-0.1.1}/src/generator.py +0 -0
  22. {testdatax-0.1.0 → testdatax-0.1.1}/src/providers/__init__.py +0 -0
  23. {testdatax-0.1.0 → testdatax-0.1.1}/src/providers/base.py +0 -0
  24. {testdatax-0.1.0 → testdatax-0.1.1}/src/providers/faker_provider.py +0 -0
  25. {testdatax-0.1.0 → testdatax-0.1.1}/src/schemas.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: TestDataX
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A flexible test data generation toolkit
5
5
  License: MIT
6
6
  Author: JamesPBrett
@@ -21,6 +21,8 @@ Description-Content-Type: text/markdown
21
21
 
22
22
  # TestDataX
23
23
 
24
+ # TestDataX
25
+
24
26
  ![Build Status](https://github.com/JamesPBrett/testdatax/actions/workflows/publish.yml/badge.svg)
25
27
  [![codecov](https://codecov.io/gh/JamesPBrett/testdatax/branch/main/graph/badge.svg?token=6VX62CI6U9)](https://codecov.io/gh/JamesPBrett/testdatax)
26
28
  ![Python Version](https://img.shields.io/badge/python-3.11%2B-blue)
@@ -30,40 +32,16 @@ This command-line interface application enables quick and customizable test data
30
32
 
31
33
  ## Requirements
32
34
  - Python 3.11+
33
- - Additional dependencies are handled automatically by poetry
34
-
35
- ## Installation
36
35
 
37
- ### Prerequisites
36
+ ## Quick Start
38
37
 
39
38
  ```bash
40
- # Install Python 3.11+ if not already installed
41
- brew install python@3.11
42
-
43
- # Install Poetry
44
- curl -sSL https://install.python-poetry.org | python3 -
45
-
46
- # Verify Poetry installation
47
- poetry --version
48
- ```
49
-
50
- ### Install
51
-
52
- ```bash
53
- # Clone the repository
54
- git clone https://github.com/JamesPBrett/testdatax.git
55
- cd testdatax
56
-
57
- # Install dependencies
58
- poetry install
59
- ```
39
+ # Install from PyPI
40
+ pip install testdatax
60
41
 
61
- ### Common Issues
42
+ # Generate sample data
43
+ testdatax --rows 1000 --format json --output data.json
62
44
 
63
- - If Poetry is not found in PATH:
64
- ```bash
65
- export PATH="$HOME/.local/bin:$PATH"
66
- ```
67
45
 
68
46
  ## Features
69
47
 
@@ -71,7 +49,7 @@ poetry install
71
49
  - Support for multiple output formats (CSV, JSON, SQL, etc.)
72
50
  - Customizable schema definitions
73
51
  - Configurable data generation parameters
74
- - CLI tool for easy data generation
52
+ - CLI tool for easy test data generation
75
53
 
76
54
  ## Supported Formats
77
55
 
@@ -341,5 +319,4 @@ The generator supports Faker providers for generating realistic data:
341
319
  ## License
342
320
 
343
321
  This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
344
- # Test change
345
322
 
@@ -1,5 +1,7 @@
1
1
  # TestDataX
2
2
 
3
+ # TestDataX
4
+
3
5
  ![Build Status](https://github.com/JamesPBrett/testdatax/actions/workflows/publish.yml/badge.svg)
4
6
  [![codecov](https://codecov.io/gh/JamesPBrett/testdatax/branch/main/graph/badge.svg?token=6VX62CI6U9)](https://codecov.io/gh/JamesPBrett/testdatax)
5
7
  ![Python Version](https://img.shields.io/badge/python-3.11%2B-blue)
@@ -9,40 +11,16 @@ This command-line interface application enables quick and customizable test data
9
11
 
10
12
  ## Requirements
11
13
  - Python 3.11+
12
- - Additional dependencies are handled automatically by poetry
13
-
14
- ## Installation
15
14
 
16
- ### Prerequisites
15
+ ## Quick Start
17
16
 
18
17
  ```bash
19
- # Install Python 3.11+ if not already installed
20
- brew install python@3.11
21
-
22
- # Install Poetry
23
- curl -sSL https://install.python-poetry.org | python3 -
24
-
25
- # Verify Poetry installation
26
- poetry --version
27
- ```
28
-
29
- ### Install
30
-
31
- ```bash
32
- # Clone the repository
33
- git clone https://github.com/JamesPBrett/testdatax.git
34
- cd testdatax
35
-
36
- # Install dependencies
37
- poetry install
38
- ```
18
+ # Install from PyPI
19
+ pip install testdatax
39
20
 
40
- ### Common Issues
21
+ # Generate sample data
22
+ testdatax --rows 1000 --format json --output data.json
41
23
 
42
- - If Poetry is not found in PATH:
43
- ```bash
44
- export PATH="$HOME/.local/bin:$PATH"
45
- ```
46
24
 
47
25
  ## Features
48
26
 
@@ -50,7 +28,7 @@ poetry install
50
28
  - Support for multiple output formats (CSV, JSON, SQL, etc.)
51
29
  - Customizable schema definitions
52
30
  - Configurable data generation parameters
53
- - CLI tool for easy data generation
31
+ - CLI tool for easy test data generation
54
32
 
55
33
  ## Supported Formats
56
34
 
@@ -320,4 +298,3 @@ The generator supports Faker providers for generating realistic data:
320
298
  ## License
321
299
 
322
300
  This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
323
- # Test change
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "TestDataX"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "A flexible test data generation toolkit"
5
5
  authors = ["JamesPBrett"]
6
6
  license = "MIT"
@@ -177,7 +177,20 @@ upload_to_repository = true
177
177
  repository = "pypi"
178
178
  tag_commit = true
179
179
  tag_format = "v{version}"
180
+ major_on_zero = false # Prevents 0.x.x to 1.0.0 on breaking changes
181
+ allow_zero_version = true
180
182
  commit_message = "chore(release): v{version}"
183
+ commit_types = [
184
+ { type = "feat", section = "Features", bump = "minor" },
185
+ { type = "fix", section = "Bug Fixes", bump = "patch" },
186
+ { type = "breaking", section = "Breaking Changes", bump = "major" },
187
+ { type = "perf", section = "Performance", bump = "patch" },
188
+ { type = "refactor", section = "Refactoring", bump = "patch" },
189
+ { type = "docs", section = "Documentation", bump = false },
190
+ { type = "chore", section = "Maintenance", bump = false },
191
+ { type = "ci", section = "CI/CD", bump = false },
192
+ { type = "build", section = "Build", bump = false }
193
+ ]
181
194
 
182
195
  [tool.semantic_release.changelog]
183
196
  template_dir = "templates"
@@ -1,6 +1,6 @@
1
1
  """TestDataX package initialization."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.1.1"
4
4
 
5
5
  from src.cli import app # noqa
6
6
 
File without changes
File without changes
File without changes
File without changes