forked from ellmetha/django-machina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (68 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "django-machina"
version = "1.1.5.dev0"
description = "A Django forum engine for building powerful community driven websites."
authors = ["Morgan Aubert <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
homepage = "https://github.com/ellmetha/django-machina"
repository = "https://github.com/ellmetha/django-machina"
keywords = ["django", "forum", "board", "messages"]
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.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards',
]
packages = [
{ include = "machina" },
]
include = [
"AUTHORS",
"CHANGELOG.rst",
"LICENSE",
"*.rst",
"machina/locale/*",
"machina/static/machina/build/*",
"machina/templates/*",
]
exclude = ["tests"]
[tool.poetry.dependencies]
python = "^3.5"
django = "^2.2 || >=3.0"
django-haystack = ">=2.1"
django-mptt = ">=0.10.0"
django-widget-tweaks = ">=1.4"
markdown2 = ">=2.3"
pillow = ">=2.2"
[tool.poetry.dev-dependencies]
codecov = "*"
django-debug-toolbar = "*"
factory-boy = "*"
faker = "*"
flake8 = "*"
ipython = "*"
isort = "*"
mock = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-pythonpath = "*"
pytest-spec = "*"
pytest-xdist = "*"
sphinx = "*"
sphinx-rtd-theme = "*"
whoosh = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"