-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (54 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "aixen"
description = "A framework for AI engineering"
readme = "README.md"
authors = [
{ name = "Peter Romov", email = "[email protected]" }
]
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["version"]
dependencies = [
"pydantic~=2.8",
"httpx~=0.27",
"python-dotenv~=1.0",
"python-slugify~=8.0",
"loguru~=0.7",
"Jinja2~=3.1",
"pillow~=10.4",
# apis
"openai~=1.35",
"replicate~=0.26",
]
[project.urls]
"Homepage" = "https://github.com/romovpa/aixen"
"Repository" = "https://github.com/romovpa/aixen"
"Issue Tracker" = "https://github.com/romovpa/aixen/issues"
[build-system]
requires = ["setuptools>=64", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-timestamp"
version_file = "src/aixen/_version.py"
[tool.ruff.lint]
select = [
"E", # All Pyflakes error codes
"F", # Pyflakes error codes
"I", # isort import sorting
"B", # flake8-bugbear codes
#"A", # flake8-builtins codes
#"S", # Security-related codes
"UP", # pyupgrade codes
"T", # Type annotations checks
#"ANN", # More comprehensive type annotations checks
"UP", # pyupgrade
"C4", # Cyclomatic complexity checks
"W", # Additional warnings
]