-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (90 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (90 loc) · 2.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "auracode"
version = "0.1.0"
description = "Terminal-native, vendor-agnostic AI coding assistant powered by Federated Mixture-of-Experts"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
authors = [
{ name = "Steven Siebert", email = "info@auracoredynamics.com" },
]
maintainers = [
{ name = "AuraCore Dynamics Inc.", email = "info@auracoredynamics.com" },
]
keywords = [
"ai",
"coding-assistant",
"llm",
"mixture-of-experts",
"mcp",
"code-generation",
"auracore",
"fmoe",
"multi-model",
"cli",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.0",
"click>=8.0",
"structlog",
"PyYAML>=6.0",
"rich>=13.0",
]
[project.optional-dependencies]
api = [
"aiohttp>=3.9",
]
grid = [
"grpcio>=1.60",
"grpcio-tools>=1.60",
"protobuf>=4.25",
]
all = [
"auracode[api,grid]",
]
dev = [
"pytest>=8.0",
"pytest-asyncio",
"pytest-aiohttp",
"ruff",
"pre-commit",
"httpx",
"auracode[all]",
]
[project.urls]
Homepage = "https://github.com/AuraCoreDynamics/auracode"
Repository = "https://github.com/AuraCoreDynamics/auracode"
Issues = "https://github.com/AuraCoreDynamics/auracode/issues"
Documentation = "https://github.com/AuraCoreDynamics/auracode#readme"
[project.scripts]
auracode = "auracode.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
auracode = ["py.typed", "assets/*.gguf"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py312"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]