-
Notifications
You must be signed in to change notification settings - Fork 58
/
pyproject.toml
41 lines (38 loc) · 1.11 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
[tool.poetry]
name = "django-bulma"
version = "0.9.0"
description = "Bulma CSS Framework for Django projects"
authors = ["Tim Kamanin <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://timonweb.com"
keywords = ["django", "css", "bulma", "theme"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django"
]
packages = [
{ include = "bulma" }
]
[tool.poetry.dependencies]
python = ">=3.7"
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"