forked from timonweb/django-bulma
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (35 loc) · 1019 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
38
[tool.poetry]
name = "django-bulma-form-templates"
version = "0.8.4"
description = "Bulma CSS Framework for Django projects"
authors = ["NKay <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["django", "css", "bulma", "theme"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django"
]
packages = [
{ include = "bulma" }
]
[tool.poetry.dependencies]
python = ">=3.6"
django = ">=2.2"
[tool.poetry.dev-dependencies]
pytest-django = "^3.8.0"
pytest = "^5.3.4"
tox = "^3.14.3"
beautifulsoup4 = "^4.8.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"