-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
67 lines (61 loc) · 1.89 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
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
#------------------------------------------------------------------------------
# PyPi meta data
#------------------------------------------------------------------------------
[project]
name = "django-memberpress-client"
version = "1.0.5"
authors = [
{ name="Lawrence McDaniel", email="[email protected]" }
]
description = "A Django plugin to add Memberpress REST API and Webhook integrations."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Django>=3.2,<=3.3",
"validators",
"django-environ"
]
keywords = ["Python", "Django", "Wordpress", "MemberPress", "REST API"]
[project.urls]
Homepage = "https://github.com/lpm0073/django-memberpress-client"
"Bug Tracker" = "https://github.com/lpm0073/django-memberpress-client/issues"
Repository = "https://github.com/lpm0073/django-memberpress-client"
#------------------------------------------------------------------------------
# see: https://setuptools.pypa.io/en/latest/userguide/dependency_management.html
#------------------------------------------------------------------------------
[project.optional-dependencies]
local = [
"pre-commit",
"black",
"flake8",
"ipython"
]
#------------------------------------------------------------------------------
# see: https://setuptools.pypa.io/en/latest/userguide/entry_point.html
#------------------------------------------------------------------------------
[project.entry-points."lms.djangoapp"]
memberpress_client = "memberpress_client.apps:MemberPressPluginConfig"