chore: bump version

This commit is contained in:
yihong0618 2023-03-17 22:44:54 +08:00
parent 529749e055
commit 17d4fbcf0a
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ jobs:
- name: make caiyun translator test - name: make caiyun translator test
if: env.BBM_CAIYUN_API_KEY != null if: env.BBM_CAIYUN_API_KEY != null
run: | run: |
python3 make_book.py --book_name "test_books/the_little_prince.txt" --test --batch_size 30 --test_num 20 --model caiyun python3 make_book.py --book_name "test_books/the_little_prince.txt" --test --batch_size 30 --test_num 100 --model caiyun
- name: make deepl translator test - name: make deepl translator test
if: env.BBM_CAIYUN_API_KEY != null if: env.BBM_CAIYUN_API_KEY != null

View File

@ -4,14 +4,14 @@ from setuptools import find_packages, setup
setup( setup(
name="bbook_maker", name="bbook_maker",
description="The bilingual_book_maker is an AI translation tool that uses ChatGPT to assist users in creating multi-language versions of epub/txt files and books.", description="The bilingual_book_maker is an AI translation tool that uses ChatGPT to assist users in creating multi-language versions of epub/txt files and books.",
version="0.2.0", version="0.3.0",
license="MIT", license="MIT",
author="yihong0618", author="yihong0618",
author_email="zouzou0208@gmail.com", author_email="zouzou0208@gmail.com",
packages=find_packages(), packages=find_packages(),
url="https://github.com/yihong0618/bilingual_book_maker", url="https://github.com/yihong0618/bilingual_book_maker",
python_requires=">=3.7", python_requires=">=3.7",
install_requires=["bs4", "openai", "requests", "ebooklib", "rich", "tqdm"], install_requires=["bs4", "openai", "requests", "ebooklib", "rich", "tqdm", "tiktoken"],
classifiers=[ classifiers=[
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",