-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 1.54 KB
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
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
# Build system that allows editable installs
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "queue_event_handler"
version = "1.6.1"
requires-python = ">=3.9"
readme = "README.md"
authors = [
{ name = "Joaquín Grez", email = "joaco@tether.education"},
]
maintainers = [
{ name = "Alfonso Irarrázaval", email = "alfonso@tether.education"},
]
description = "The Queue Event Handler is a lightweight wrapper designed to streamline the management of Amazon Simple Queue Service (SQS) and Simple Notification"
license = { text = "MIT" }
classifiers =[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"chalice",
]
[project.optional-dependencies]
dev = [
"black",
]
[project.urls]
Homepage = "https://github.com/TetherEducation/queue-event-handler"
Documentation = "https://github.com/TetherEducation/queue-event-handler/blob/master/README.md"
Source = "https://github.com/TetherEducation/queue-event-handler"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \venv
| _build
| buck-out
| build
| dist
)/
'''
# Versions
# 1.0.0 -> Initial release