Skip to content

Commit

Permalink
pre-release: v0.1.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Guo-Zhang committed May 27, 2023
1 parent a878e54 commit eda3117
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@

## 安装

### 通过`pip`安装

```shell
pip install quanttide-data
```

### 通过`poetry`安装

```shell
poetry add git+https://github.com/quanttide/quanttide-data-python.git
poetry add quanttide-data
```

## 测试

```shell
poetry install
```
14 changes: 10 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "quanttide-data"
version = "0.1.0-alpha.1"
version = "0.1.0-beta.1"
description = "量潮数据工程Python工具包"
authors = ["QuantTide <[email protected]>"]
license = "Apache 2.0"
Expand All @@ -13,9 +13,15 @@ packages = [{include = "quanttide_data"}]

[tool.poetry.dependencies]
python = "^3.7"
# logging
logdecorator = "^2.4"
# crawler
requests = { version = "^2.31.0"}
beautifulsoup4 = { version = "^4.12.2"}

[tool.poetry.group.crawler.dependencies]

[tool.poetry.group.dev.dependencies]
# bugfix for poetry
urllib3 = "<2.0"
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
pytest = "^7.3.1"
coverage = "^7.2.6"

0 comments on commit eda3117

Please sign in to comment.