Metadata-Version: 2.1
Name: company_package
Version: 0.0.1.post1
Summary: A Python package for modeling companies across various sectors.
Author-email: Your Name <your.email@example.com>, Boris <boris.bolliet@gmail.com>
Project-URL: Documentation, https://your-readthedocs-url-here
Project-URL: Source, https://github.com/yourusername/companies_package
Project-URL: Issues, https://github.com/yourusername/companies_package/issues
Keywords: companies,finance,healthcare,technology
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: yfinance
Requires-Dist: argparse
Requires-Dist: datetime
Requires-Dist: importlib.resources

# Company Package

The **Company Package** is a Python package designed to model companies across different sectors.

## Features

- Base `Company` class with core attributes and methods, including stock price retrieval.
- Sector-specific subclasses:
  - **InfoTechCompany**: For companies focused on information technology.
  - **FinTechCompany**: For companies in the financial technology sector.
  - **MedicalCompany**: With additional methods to track drug approval attempts.
- Integrated with `yfinance` for real-time stock information.

## Installation

Ensure you have Python 3.6 or higher. You can install the package and its dependencies from source with:

```bash
pip install -e .
```

or from PyPi with:

```bash
pip install company_package
```

## Usage

Here's a quick example of how to use the package:

```python
import company as cp

my_company = cp.Company(name="Nvidia", ticker="NVDA")
my_company.display_info()

```

## Documentation

Visit our [documentation page](https://your-readthedocs-url-here).

## Contributing

Contributions are welcome! Fork our repository and submit a pull request.

## License

This project is licensed under the MIT License - see the `LICENSE` file for details.
