-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
47 lines (40 loc) · 867 Bytes
/
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
[bumpversion]
current_version = 1.5.0
commit = True
tag = True
[metadata]
name = j2render
version = attr: j2render.__version__
description = Render Jinja2 templates from the command line
long-description = file: README.md
long-description-content-type = text/markdown
url = https://github.com/fredrikhl/jinja2-render
author = fredrikhl
license = MIT
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Programming Language :: Python :: 3
Programming Language :: Python
[options]
include_package_data = True
packages = find:
package_dir =
= src/
install_requires =
Jinja2 ~= 3.1
PyYAML ~= 6.0
[options.packages.find]
where = src
include =
j2render
[options.entry_points]
console_scripts =
j2render = j2render:main
[options.extras_require]
dev =
build
bump2version
[bdist_wheel]
universal = 1
[bumpversion:file:src/j2render.py]