File: pyproject.toml

package info (click to toggle)
aws-crt-python 0.28.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 78,428 kB
  • sloc: ansic: 437,955; python: 27,657; makefile: 5,855; sh: 4,289; ruby: 208; java: 82; perl: 73; cpp: 25; xml: 11
file content (39 lines) | stat: -rw-r--r-- 1,386 bytes parent folder | download
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
[build-system]
requires = [
  "setuptools>=75.3.1",
]
build-backend = "setuptools.build_meta"

[project]
name = "awscrt"
license = { text = "Apache-2.0", files = ["LICENSE"] }
authors = [
  { name = "Amazon Web Services, Inc", email = "aws-sdk-common-runtime@amazon.com" },
]
description = "A common runtime for AWS Python projects"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
  "Programming Language :: Python :: 3",
  "Operating System :: Microsoft :: Windows",
  "Operating System :: POSIX",
  "Operating System :: Unix",
  "Operating System :: MacOS",
]
dynamic = ["version"]

[project.urls]
github = "https://github.com/awslabs/aws-crt-python"
documentation = "https://awslabs.github.io/aws-crt-python"
issues = "https://github.com/awslabs/aws-crt-python/issues"
releasenotes = "https://github.com/awslabs/aws-crt-python/releases"

[project.optional-dependencies]
dev = [
  "autopep8>=2.3.1",                             # for code formatting
  "build>=1.2.2",                                # for building wheels
  "sphinx>=7.2.6,<7.3; python_version >= '3.9'", # for building docs
  "websockets>=13.1",                            # for tests
  # for tests, restrict to exact version for test_http_client/TestClientMockServer/_on_remote_settings_changed that relies on the implementation details. Also, this is no needs to update this package.
  "h2==4.1.0",
]