-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (36 loc) · 1.01 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
[tool.poetry]
name = "django-misaka"
version = "0.2.2"
description = "A Django app for rendering Markdown (by Misaka Markdown parser)."
authors = ["Chieh Tu <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/chiehtu/django-misaka"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = ">= 3.7, < 3.11"
misaka = "~2.1.1"
Pygments = "~2.15.1"
[tool.poetry.dev-dependencies]
coverage = "^6.4.2"
tox = "^3.25.1"
Django = [
{ version = "~3.2.14", python = "^3.7" },
{ version = "~4.0.6", python = "^3.8" },
]
pytest = "^7.1.2"
pytest-django = "^4.5.2"
flake8 = "^5.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"