Metadata-Version: 2.3
Name: DataSpaces-TestConverters
Version: 1.0.0.dev1
Summary: Dataspace test converters
Requires-Python: ~=3.9
Description-Content-Type: text/markdown
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent

# ds-test-converters

PyPi Package that contains custom transformations and functions for DS demonstrations

### Test Locally

- Create a python environment
- pip install flit
- flit build
- Go to dist folder and pip install the package
- open python shell and run the below:
  ```
  from converters.converters import double
  double(6)
  ```

