Metadata-Version: 2.1
Name: ds4finance
Version: 0.1.13
Summary: A collection of data science tools for finance
Home-page: https://github.com/LuisSousaSilva/ds4finance
Author: Luis Silva
Author-email: luis_paulo_silva@hotmail.com
License: MIT
Description: # ds4finance
        
        A collection of data science tools for finance.
        
        ## Installation
        
        Install the package from PyPI using pip:
        
        ```python
        pip install ds4finance
        ```
        
        ## Usage 
        
        To use the package, import it using the alias dsf:
        
        import ds4finance as dsf
        
        ### Example: Computing Standard Deviation
        
        ```python
        import pandas as pd
        import ds4finance as dsf
        
        # Load or create a DataFrame containing financial data
        data = pd.read_csv("your_data.csv")
        
        # Compute the annualized standard deviation for the data
        std_dev = dsf.compute_std_dev(data)
        ```
        
        ## License
        
        This project is licensed under the MIT License. See the [LICENSE.txt](LICENSE.txt) file for more information.
        
        ## Contributing
        
        We welcome contributions to the project. If you'd like to contribute, please follow these steps:
        
        1. Fork the repository.
        2. Create a new branch for your feature or bugfix.
        3. Make your changes, and ensure that the code follows PEP 8 guidelines.
        4. Submit a pull request to the main repository.
        
        ## Support
        
        If you encounter any issues or have questions, please [open an issue](https://github.com/LuisSousaSilva/ds4finance/issues) on the GitHub repository.
        
        ## Authors
        
        - Luis Silva - luis_paulo_silva@hotmail.com
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.6
Description-Content-Type: text/markdown
