-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
45 lines (40 loc) · 1.41 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[project]
name = "gpt_translate"
dynamic = ["version"]
description = "A tool to translate markdown files using GPT-4"
readme = "README.md" # Assuming you have a README.md file
requires-python = ">=3.9"
authors = [{name = "Thomas Capelle", email = "[email protected]"}]
license = {file = "LICENSE"} # Assuming you have a LICENSE file
keywords = ["artificial intelligence", "generative models", "natural language processing", "openai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"rich>=13.0",
"openai>=1.0",
"tiktoken>=0.5",
"tenacity>=8.2.3",
"fastcore>=1.5.29",
"weave>=0.50.3",
"tqdm>=4.66.4",
"simple_parsing>=0.1.5",
]
[project.urls]
homepage = "https://github.com/tcapelle/gpt_translate"
[project.scripts]
"gpt_translate.file" = "gpt_translate.cli:translate_file"
"gpt_translate.files" = "gpt_translate.cli:translate_files"
"gpt_translate.folder" = "gpt_translate.cli:translate_folder"
"gpt_translate.copy_images" = "gpt_translate.cli:copy_images"
"gpt_translate.new_files" = "gpt_translate.cli:new_files"
"gpt_translate.eval" = "gpt_translate.cli:eval"