Skip to content

Commit 6decc8f

Browse files
committed
docs(conduct): update enforcement contact information --m Update the Code of Conduct enforcement contact details
The following changes have been made to the Code of Conduct: - Updated the contact email for reporting incidents to contact@coderai.co - Ensured proper formatting and consistency throughout the document - Maintained alignment with Contributor Covenant v2.0 This update helps ensure clear communication channels for Code of Conduct enforcement and community safety.
1 parent fa79505 commit 6decc8f

File tree

2 files changed

+71
-1
lines changed

2 files changed

+71
-1
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
contact@langflow.org.
63+
contact@coderai.co.
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

pyproject.toml

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
[project]
2+
name = "coderai"
3+
version = "0.1.0"
4+
description = "An AI-powered coding assistant and project management tool"
5+
requires-python = ">=3.10,<3.14"
6+
license = "MIT"
7+
keywords = ["ai", "code-assistant", "development-tools", "project-management"]
8+
readme = "README.md"
9+
10+
dependencies = [
11+
"langchain~=0.3.10",
12+
"langchain-community~=0.3.10",
13+
"langchain-openai==0.2.12",
14+
"fastapi>=0.115.2,<1.0.0",
15+
"uvicorn>=0.30.0,<1.0.0",
16+
"pydantic~=2.10.1",
17+
"pydantic-settings>=2.4.0",
18+
"python-multipart>=0.0.12,<1.0.0",
19+
"GitPython==3.1.43",
20+
"beautifulsoup4==4.12.3",
21+
"httpx>=0.27.0",
22+
"chromadb==0.5.23",
23+
"sqlalchemy[aiosqlite]>=2.0.38,<3.0.0",
24+
"loguru>=0.7.1,<1.0.0",
25+
"rich>=13.7.0,<14.0.0",
26+
"typer>=0.13.0,<1.0.0",
27+
"platformdirs>=4.2.0,<5.0.0",
28+
'pywin32==307; sys_platform == "win32"',
29+
]
30+
31+
[project.urls]
32+
Repository = "https://github.com/yourusername/coderAI"
33+
34+
[project.optional-dependencies]
35+
dev = [
36+
"pytest>=8.2.0",
37+
"pytest-cov>=5.0.0",
38+
"pytest-asyncio>=0.23.0",
39+
"mypy>=1.11.0",
40+
"ruff>=0.9.7,<0.10",
41+
"pre-commit>=3.7.0",
42+
"black>=24.1.0",
43+
"isort>=5.13.0",
44+
]
45+
46+
[tool.ruff]
47+
line-length = 120
48+
49+
[tool.ruff.lint]
50+
select = ["E", "F", "B", "I", "UP"]
51+
ignore = []
52+
53+
[tool.pytest.ini_options]
54+
minversion = "6.0"
55+
testpaths = ["tests"]
56+
filterwarnings = ["ignore::DeprecationWarning", "ignore::ResourceWarning"]
57+
58+
[tool.coverage.run]
59+
source = ["coderai"]
60+
omit = ["tests/*", "*/__init__.py"]
61+
62+
[tool.mypy]
63+
plugins = ["pydantic.mypy"]
64+
follow_imports = "skip"
65+
disable_error_code = ["type-var"]
66+
ignore_missing_imports = true
67+
68+
[build-system]
69+
requires = ["hatchling"]
70+
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)