-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
79 lines (71 loc) · 1.66 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.commitizen]
version = "0.8.0"
changelog_start_rev = "0.7.0"
tag_format = "v$major.$minor.$patch$prerelease"
version_files = [
"pyproject.toml:version",
"notification/__init__.py"
]
[tool.poetry]
name = "django-user-notification"
version = "0.8.0"
description = "Django message notification package"
authors = ["Aiden Lu <[email protected]>"]
readme = "README.md"
keywords = ["notification", "django"]
packages = [
{ include = "notification" },
]
homepage = "https://github.com/aiden520/django-user-notification"
repository = "https://github.com/aiden520/django-user-notification"
classifiers = [
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = "Apache-2.0"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.8"
django = ">=3.1"
requests = "^2.27.1"
channels = { version=">=3.0.4", optional=true }
alibabacloud-dysmsapi20170525 = { version=">=2.0.16", optional=true }
markdownify = ">=0.11.2"
django-tinymce = "^3.6.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
pytest = "^6.2.5"
[tool.poetry.extras]
channels = ["channels"]
aliyunsms = ["alibabacloud-dysmsapi20170525"]
[tool.black]
line-length = 89
target-version = ['py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
| migrations
)/
'''
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"