This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (48 loc) · 1.67 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
45
46
47
48
49
50
51
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["./"]
[project]
name = "django-text-translator"
version = "2024.5.1"
authors = [
{ name="Versun", email="[email protected]" },
]
description = "A Django application that supports adding multiple third-party engines for text translation."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT License"}
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"django>=5.0.2",
"cityhash >= 0.4.7",
"deepl >= 1.17.0",
"PyDeepLX >= 1.0.7",
"anthropic >= 0.18.1",
"httpx >= 0.27.0",
"django-encrypted-model-fields >= 0.6.5",
"openai >= 1.12.0",
"google-generativeai >= 0.5.1",
]
[project.urls]
Homepage = "https://github.com/rss-translator/django-text-translator"
Repository = "https://github.com/rss-translator/django-text-translator.git"
Issues = "https://github.com/rss-translator/django-text-translator/issues"