-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 1.04 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pybars3"
version = "0.9.7"
description = 'Handlebars.js templating for Python 3 and 2'
readme = "README.md"
requires-python = ">=2.7"
keywords = []
authors = [
{ name = "wbond", email = "will@wbond.net" },
{ name = "mjumbewu", email = "mjumbewu@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
]
dependencies = [
"PyMeta3>=0.5.1"
]
[project.urls]
Documentation = "https://github.com/wbond/pybars3"
Issues = "https://github.com/wbond/pybars3/issues"
Source = "https://github.com/wbond/pybars3"
[tool.setuptools]
packages = ["pybars", "pybars._templates"]