-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.14 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
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "source"}
[project]
name = "idea"
dynamic = ["version"]
description = "Research and Engineering Studio"
readme = "README.md"
requires-python = ">=3.9.16,<3.10"
license = {text = "Apache Software License"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: AWS CDK :: 2",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
]
[tool.setuptools.dynamic]
version = {file = ["RES_VERSION.txt"]}
[project.scripts]
cdk-app = "idea.app:main"
[tool.black]
include = 'source/.*\.py'
# TODO: Change the path to include all the source files
extend-exclude = 'source/idea/idea-*|dcv_swagger_client|res_meta'
[tool.isort]
profile = "black"
known_first_party = "idea,ideadatamodel"
# TODO: Change the path to include all the source files
skip_glob = ["source/idea/idea-*", "*dcv_swagger_client*", "*res_meta*"]