forked from Xtr4F/PyCharacterAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (51 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (51 loc) · 1.49 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = ["/.*", "/docs", "/tests"]
[project]
name = "PyCharacterAI"
version = "2.2.431"
description = "An unofficial asynchronous api wrapper for Character AI."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "XtraF", email = "igoromarov15@gmail.com" }]
maintainers = [{ name = "XtraF", email = "igoromarov15@gmail.com" }]
keywords = [
"characterai",
"character",
"cai",
"ai",
"api",
"wrapper",
"asyncio",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["curl-cffi>=0.11.1"]
[project.urls]
Homepage = "https://github.com/Xtr4F/PyCharacterAI"
Documentation = "https://github.com/Xtr4F/PyCharacterAI/blob/main/docs/welcome.md"
Repository = "https://github.com/Xtr4F/PyCharacterAI.git"
Issues = "https://github.com/Xtr4F/PyCharacterAI/issues"
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
# Avoid enforcing line-length violations (`E501`)
ignore = ["E501"]
[tool.uv.workspace]
members = [
"tests",
]