-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 974 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
[tool.poetry]
name = "tencentcloud-django-cos-storage"
version = "1.0.0"
description = "A django app for Tencent Cloud Object Storage. 腾讯云对象存储(COS)服务 for Django。"
license = "BSD-3-Clause"
authors = ["huberyxxiao <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Huberyxiao/django-cos-storage"
keywords = ["django"]
packages = [
{ include = "django_cos_storage" },
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
cos-python-sdk-v5 = "^1.9.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-django = "^4.3.0"
pytest-cov = "^2.12.0"
flake8 = "^3.9.2"
black = "^21.6b0"
[tool.coverage.run]
include = ["django_cos_storage/*"]
omit = ["*tests*"]
[tool.pytest.ini_options]
minversion = "6.0"
DJANGO_SETTINGS_MODULE = "tests.django_settings"
python_files = "tests.py test_*.py"
addopts = "--cov=django_cos_storage"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"