-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.49 KB
/
pyproject.toml
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
[project]
name = "resume-builder"
version = "2.1.0"
description = "A resume builder that stores resume data in jsonresume conforming yaml and dynamically builds a beautifully typset PDF in LaTeX"
readme = "README.md"
authors = [{ name = "Joe Black", email = "[email protected]" }]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"PyLaTeX",
"PyYAML",
"invoke",
"typer",
"sh",
]
[project.urls]
Documentation = "https://github.com/joeblackwaslike/resume-builder"
Issues = "https://github.com/joeblackwaslike/resume-builder/issues"
Source = "https://github.com/joeblackwaslike/resume-builder"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.scripts]
resume-builder = "resume_builder.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.isort]
profile = "wemake"
src_paths = ["builder"]
force_single_line = true
use_parentheses = true
atomic = true
lines_after_imports = 2
line_length = 100
order_by_type = false
known_first_party = ["builder"]
[tool.black]
exclude = '''
/(
\.git
\.venv
\data
\docker-texlive
\export
\latex
\scripts
| \data
)/
'''
line_length = 100
safe = true