This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "divineos-consciousness"
version = "1.0.0"
description = "Philosophical computing framework for constitutional AI exploration"
readme = "README.md"
requires-python = ">=3.10"
authors = [{name = "Andrew", email = "via-kiro-ai@example.com"}]
license = {text = "AGPL-3.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"sqlalchemy>=2.0.0",
"anthropic>=0.7.0",
]
[project.optional-dependencies]
api = ["fastapi>=0.68.0", "uvicorn>=0.15.0"]
advanced = ["faiss-cpu>=1.7.0"]
llm = ["google-genai>=1.0.0", "openai>=1.0.0"]
dev = ["pytest>=6.0.0", "pytest-asyncio>=0.15.0"]
[tool.setuptools]
packages = ["DivineOS"]
[tool.setuptools.package-data]
DivineOS = ["**/*.py"]
[tool.ruff]
line-length = 320
target-version = "py39"
[tool.ruff.lint]
select = ["E", "W", "F"]
ignore = ["E501", "E402", "F401", "F821", "E741", "W293", "E722", "F811"]
[tool.black]
line-length = 100
target-version = ['py39']