-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (81 loc) · 2.22 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
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "aiosqs"
description = "Python asynchronous and lightweight SQS client."
license = "MIT"
authors = [
{name = "Vladimir Kasatkin", email = "[email protected]"},
]
keywords = ["aws", "sqs"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Environment :: MacOS X",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
]
requires-python = ">=3.8"
dependencies = [
"aiohttp[speedups]>=3",
"lxml>=4",
]
dynamic = [
"version",
"readme",
]
[project.urls]
Homepage = "https://github.com/d3QUone/aiosqs"
Tracker = "https://github.com/d3QUone/aiosqs/issues"
Source = "https://github.com/d3QUone/aiosqs"
[tool.poetry]
name = "aiosqs"
version = "1.0.5"
description = "Python asynchronous and lightweight SQS client."
authors = ["Vladimir Kasatkin <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = {extras = ["speedups"], version = "^3"}
lxml = "^4"
[tool.poetry.group.dev.dependencies]
nose2 = "0.12.0"
freezegun = "1.2.2"
pre-commit = "2.17.0"
packaging = "23.2"
aioresponses = "0.7.6"
python-dotenv = "1.0.0"
ddt = "1.7.0"
[tool.black]
line-length = 140
[tool.hatch]
[build-system]
requires = ["hatchling", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "aiosqs/__init__.py"
[tool.hatch.metadata.hooks.fancy-pypi-readme]
content-type = "text/markdown"
fragments = [
{path = "README.md"},
]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/MAINTAIN.md",
"/Makefile",
"/aiosqs/tests",
"/e2e",
]