-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.1 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
[build-system]
requires = [
"setuptools>=75.3.1",
"wheel>=0.45.1", # used by our setup.py
]
build-backend = "setuptools.build_meta"
[project]
name = "awscrt"
license = {text = "Apache-2.0", files = ["LICENSE"]}
authors = [{name = "Amazon Web Services, Inc", email = "[email protected]"}]
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
]