-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
26 lines (22 loc) · 935 Bytes
/
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
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[project]
name = "aichar"
description = "Library for creating/transporting/parsing AI characters between different frontends (TavernAI, SillyTavern, TextGenerationWebUI, AI-companion, Pygmalion) written in Rust"
license = {file = "LICENSE"}
authors = [
{name = "Hubert Kasperek", email = "hubertkasp13@gmail.com"}
]
keywords = ["character cards", "Rust", "parser", "editor", "TavernAI", "SillyTavern", "TextGenerationWebUI", "AI-Companion", "Pygmalion"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Repository = "https://github.com/Hukasx0/aichar"
Documentation = "https://github.com/Hukasx0/aichar/blob/main/README.md"
[tool.maturin]
features = ["pyo3/extension-module"]