-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.32 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "resume-builder-api"
version = "1.0.0"
description = "FastAPI backend for the Resume Builder application."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
license-files = ["LICENSE*"]
dependencies = [
"fastapi==0.115.8",
"uvicorn==0.34.0",
"pydantic==2.10.6",
"jinja2==3.1.5",
"pdfkit==1.0.0",
"PyYAML==6.0.2",
"python-multipart==0.0.20"
]
authors = [
{ name = "Amit Afre", email = "amit.afre93+resumebuilderapp@gmail.com" }
]
maintainers = [
{ name = "Amit Afre", email = "youremail@example.com" }
]
keywords = ["resume", "builder", "fastapi", "api", "pdf", "reactjs" ]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://easyfreeresume.com/"
Repository = "https://github.com/aafre/resume-builder"
Documentation = "https://github.com/yourusername/resume-builder-api#readme"
[project.scripts]
resume-builder = "resume_builder_api.app:main"
[project.optional-dependencies]
dev = [
"pytest==8.3.4"
]
[tool.pytest.ini_options]
markers = [
"requires_pdfkit: marks tests that require pdfkit and wkhtmltopdf to be installed",
]
testpaths = ["tests"]