-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
37 lines (33 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "typogrify"
version = "2.0.7"
description = "Filters to enhance web typography, including support for Django & Jinja templates"
authors = [ "Christian Metts <chris@tiltshiftstudio.com>",
"Justin Mayer <entroP@gmail.com>",
"Chris Drackett",]
license = "BSD"
homepage="https://github.com/mintchaos/typogrify"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
"Framework :: Flask",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
smartypants = ">=1.8.3"
[tool.poetry.dev-dependencies]
black = ">=22.3"
invoke = ">=1.3.0"
pycodestyle = ">=2.6.0"
pytest = ">5.0.0"
[tool.black]
exclude = 'tests\.py'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"