File size: 4,657 Bytes
c2e4879 a5883c9 e395566 c2e4879 c6d9110 c2e4879 a5694ec c2e4879 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 2debb96 a5883c9 c6d9110 2debb96 c2e4879 a5883c9 2debb96 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 c2e4879 a5883c9 |
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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |
[project]
name = "resume_maker_ai_agent"
version = "0.0.1"
description = "This app will modify the resume as per the job description."
readme = "README.md"
authors = [{ name = "Deepak Pant", email = "[email protected]" }]
requires-python = ">=3.10,<=3.13"
dependencies = [
"crewai[tools]>=0.86.0,<1.0.0",
"streamlit >=1.41.1",
# "python-docx >=1.1.2",
"pypdf (>=5.1.0,<6.0.0)",
"pysqlite3-binary >=0.5.4",
]
[project.urls]
repository = "https://github.com/DeepakPant93/resume-maker-ai-agent"
documentation = "https://DeepakPant93.github.io/resume-maker-ai-agent/"
[project.optional-dependencies]
dev = [
"deptry==0.16.2",
"mypy==1.5.1",
"pre-commit==3.4.0",
"tox==4.11.1",
"ipykernel==6.25.0",
"black==23.9.0",
"build==1.2.2",
"bump-my-version==0.28.2",
"codespell==2.2.5",
"wheel==0.41.0",
"twine==4.0.0",
"bandit==1.8.0",
"pylint==3.0.0",
"pydocstyle==6.3.0",
]
docs = [
"mkdocs==1.5.0",
"sphinx==7.2.0",
"mkdocs-git-revision-date-plugin==0.3.2",
"mkdocs-git-revision-date-localized-plugin==1.3.0",
"mkdocs-jupyter>=0.25.1",
"mkdocs-pdf-export-plugin==0.5.10",
"mkdocs-material>=9.1.3",
"mkdocstrings-crystal==0.3.7",
"pygments==2.16.0",
"pymdown-extensions==10.0",
"nbconvert==7.16.5",
"nbformat==5.9.0",
"livereload==2.6.3",
"watchdog==3.0.0",
"mkdocstrings[python]==0.27.0",
"mkdocs-minify-plugin==0.8.0",
]
[project.scripts]
resume_maker_ai_agent = "resume_maker_ai_agent.__main__:main"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["resume_maker_ai_agent"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
pretty = true
show_traceback = true
ignore_missing_imports = true
exclude = ['.venv/', 'venv/', '.env/', 'env/']
[[tool.mypy.overrides]]
module = [
"joblib.*",
"yaml.*",
"ensure.*",
"fastapi_health.*",
"crewai.*",
"crewai_tools.*",
"bs4.*",
"streamlit.*",
"sql_connection.*",
"connections.*",
"resume_maker_ai_agent.crew",
]
ignore_missing_imports = true
ignore_errors = true
# disable_error_code = ["import-untyped", "import-not-found", "redundant-cast"]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = "legacy_tests"
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
filterwarnings = [
"ignore:.*general_plain_validator_function.*:DeprecationWarning",
"ignore:.*with_info_plain_validator_function.*:DeprecationWarning",
]
[tool.ruff]
target-version = "py39"
line-length = 120
fix = true
select = [
# flake8-2020
"YTT",
# flake8-bandit
"S",
# flake8-bugbear
"B",
# flake8-builtins
"A",
# flake8-comprehensions
"C4",
# flake8-debugger
"T10",
# flake8-simplify
"SIM",
# isort
"I",
# mccabe
"C90",
# pycodestyle
"E",
"W",
# pyflakes
"F",
# pygrep-hooks
"PGH",
# pyupgrade
"UP",
# ruff
"RUF",
# tryceratops
"TRY",
]
ignore = [
# LineTooLong
"E501",
# DoNotAssignLambda
"E731",
# Possible binding to all interfaces - Require for Docker container
"S104",
]
[tool.ruff.format]
preview = true
[tool.coverage.report]
skip_empty = true
[tool.coverage.run]
branch = true
source = ["resume_maker_ai_agent"]
# parallel = true
# concurrency = ["thread"]
omit = [
"**/__init__.py", # Exclude all init files
"resume_maker_ai_agent/crew.py", # Exclude crew.py file
"resume_maker_ai_agent/config/*", # Exclude all files in config folder
"resume_maker_ai_agent/models/*", # Exclude all files in model folder
]
[tool.ruff.per-file-ignores]
"tests/*" = ["S101"]
[tool.bumpversion]
current_version = "0.0.1"
commit = true
tag = true
[[tool.bumpversion.files]]
glob = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[tool.deptry]
exclude = [
"research",
"artifacts",
"notebooks",
"tests",
"docs",
".venv",
"venv",
"__pycache__",
".ruff_cache",
".pytest_cache",
".mypy_cache",
".coverage",
".git",
"build",
"dist",
".github",
"site",
"config",
]
ignore = ["DEP003"]
[tool.pydocstyle]
select = ["D101", "D102"]
[tool.isort]
profile = "black"
known_third_party = ["requests", "bs4", "pydantic", "crewai_tools"]
default_section = "THIRDPARTY"
force_sort_within_sections = true
line_length = 120
|