-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
66 lines (61 loc) · 1.54 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
[tool.poetry]
name = "django-ios-storekit"
version = "1.0.10"
description = "iOS In-App Purchase's receipt validation server plugin for Django"
authors = ["Yuya Oka <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/nnsnodnb/django-ios-storekit"
keywords = ["django", "ios", "in-app-purchases", "apple"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "storekit" }
]
[tool.poetry.dependencies]
python = "^3.7"
Django = ">=2,<4"
requests = "^2"
[tool.poetry.dev-dependencies]
pytest = "^7.4"
pytest-django = "^4.5"
pytest-cov = "^4.1"
pytest-mock = "^3.11"
requests-mock = "^1.12"
coveralls = "^3.3.1"
flake8 = "^5.0"
black = "^23.3"
isort = "^5.11.5"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
(
/(
\.git
|\.github
|\.pytest_cache
|\.venv
|migrations
)/
)
'''
[tool.isort]
include_trailing_comma = true
line_length = 120
multi_line_output = 5
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"