-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (29 loc) · 881 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
[tool.poetry]
name = "django-test-curl"
version = "0.2.0"
description = "Write Django test requests using curl syntax"
authors = ["crccheck <oss@crccheck.com>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/crccheck/django-test-curl"
keywords = ["django", "curl", "tests"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = "^3.6.2"
[tool.poetry.dev-dependencies]
django = "^3.2.2"
flake8 = "^3.9.2"
mypy = "^0.812"
black = "^21.5b0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
branch = "master"
version_toml = "pyproject.toml:tool.poetry.version"
version_variable = "django_test_curl/__init__.py:__version__"
build_command = "pip install poetry && poetry build"