-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 893 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
[tool.poetry]
name = "django-scan-models"
version = "0.2.12"
description = "Django scan models: Parse django models to frontend validation"
authors = ["Jessie Liauw A Fong <[email protected]>"]
packages = [
{ include = "scan_models" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 3.0",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.6"
django = "^3.0.4"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
coverage = "^5.0.4"
coverage-badge = "^1.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"