-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (51 loc) · 1.55 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
[build-system]
requires = ["flit_core >=3.7,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "firebase_push"
description = "Firebase push notifications for Django, based on official SDK"
readme = "README.md"
keywords = ["django", "utils"]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"Django>=4.1",
"celery>=5.2",
"firebase-admin>=6.0",
"django-admin-extra-buttons",
"djangorestframework>=3.14.0",
"typing_extensions >= 4.1; python_version < '3.11'",
]
authors = [{name = "Johannes Schriewer", email = "j.schriewer@anfe.ma"}]
[project.urls]
Home = "https://github.com/anfema/firebase_push"
# [project.scripts]
# firebase_push = "my_package.module:function" # django.core.management:execute_from_command_line
# define the module to package since it is named differently
[tool.flit.module]
name = "firebase_push"
#[tool.flit.sdist]
#include = ["doc/"]
#exclude = ["doc/*.html"]
#[tool.flit.external-data]
#directory = "data"
[tool.black]
target-version = ['py310']
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
known_first_party = "firebase_push"
lines_after_imports = 2