-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.68 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
[project]
name = "CVbuilder"
version = "0.1"
description = "Build your CV fast and easy way. A Python app powered with Flask framework"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = "==3.13.5"
license = "MIT"
license-files = ["LICEN[CS]E.*"]
authors = [
{ name = "Rasul Gasanbekov" },
{ name = "Vladimir Golubev" }
]
maintainers = [
]
keywords = ["python", "js", "flask", "web", "cv", "resume", "email"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Office/Business",
"Topic :: Utilities",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Flask",
"Environment :: Web Environment",
"Operating System :: OS Independent"
]
dependencies = [
"flask==3.1.1",
"flask_mail==0.10.0",
"flask_wtf==1.2.2",
"google-genai==1.23.0",
"python-docx==1.2.0",
"pillow==11.2.1",
"reportlab==4.4.2",
"ruff==0.14.2"
]
[project.optional-dependencies]
test = ["pytest"]
lint = ["ruff"]
[project.urls]
homepage = "https://cvbuilder.art"
documentation = "https://github.com/aqerd/CVbuilder/tree/main/docs"
repository = "https://github.com/aqerd/CVbuilder"
issues = "https://github.com/aqerd/CVbuilder/issues"
[project.entry-points]
console_scripts = { cvbuilder = "main:main" }
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["src/app*"]