-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fastaws"
version = "0.0.14"
description = "A fast, simple, async Python library for some AWS services (S3, SES, SQS)"
readme = "README.md"
requires-python = ">=3.10.4"
license = { text = 'MIT' }
authors = [{ name = "Wayde Gilliam", email = "waydegilliam@gmail.com" }]
keywords = ["python", "aws", "asyncio"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
]
dependencies = ["aiofiles", "httpx", "structlog", "beautifulsoup4", "lxml"]
[project.optional-dependencies]
dev = ["black", "isort"]
[project.urls]
Homepage = "https://github.com/waydegg/fastaws"
Source = "https://github.com/waydegg/fastaws"