-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (50 loc) · 1.06 KB
/
setup.cfg
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
[metadata]
name = py_great_resume
version = attr: py_great_resume.__version__
description = Make a great resume, using Python.
maintainer = Burton DeWilde
maintainer_email = [email protected]
license = MIT
license_files =
LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python
Programming Language :: Python :: 3
keywords =
resume
templater
renderer
url = https://github.com/bdewilde/py-great-resume
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
jinja2~=3.0
jsonschema~=4.0
MarkupSafe # required by jinja2
weasyprint>=54.0
[options.packages.find]
where = src
[options.extras_require]
dev =
black
build
flake8
isort
mypy>=0.900
pytest~=7.0
pytest-cov
twine
wheel
[flake8]
exclude = .git,.github,__pycache__,build,dist,docs,tests
ignore = E203,W503
max-line-length = 88
statistics = True
per-file-ignores =
src/**/__init__.py:F401