-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
55 lines (51 loc) · 1.48 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.poetry]
name = "django-precise-bbcode"
version = "1.2.17.dev"
description = "A django BBCode integration.."
authors = ["Morgan Aubert <me@morganaubert.name>"]
license = "BSD-3-Clause"
readme = "README.rst"
homepage = "https://github.com/ellmetha/django-precise-bbcode"
repository = "https://github.com/ellmetha/django-precise-bbcode"
keywords = ["django", "bbdode", "html"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "precise_bbcode" },
]
include = ["LICENSE", "*.rst"]
exclude = ["example_project", "tests"]
[tool.poetry.dependencies]
python = "^3.6"
django = "^3.2 || >=4.0"
pillow = ">=2.2.1"
[tool.poetry.dev-dependencies]
django-debug-toolbar = "*"
flake8 = "*"
ipython = "*"
isort = "*"
pytest = "^6.2.5"
pytest-cov = "*"
pytest-spec = "*"
pytest-django = "*"
pytest-pythonpath = "^0.7.3"
jinja2 = "^2.10.3"
sphinx = "*"
sphinx-rtd-theme = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"