Metadata-Version: 2.1
Name: mydatepackage
Version: 0.1.0
Summary: A simple date utility package
Author: Your Name
Author-email: your.email@example.com
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dateutil >=2.8.1

# lorry_date

`lorry_date` 是一个简单的 Python 日期处理工具包，提供了获取当前日期和给定日期加上指定天数的功能。

## 安装

使用 pip 安装:

```bash
pip install lorry_date
```

## 使用方法
#### 获取当前日期
```
from mydatepackage.dateutils import get_current_date
print(get_current_date())
```

#### 给定日期加上指定天数
```
from mydatepackage.dateutils import add_days_to_date

print(add_days_to_date("2023-01-01", 10))
```

## 开发
要贡献此包，请克隆仓库并提交您的更改。
