This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.82 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
[build-system]
requires = ["flit_core >=2,<3"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "lambdex"
author = "The Lambdex developers"
author-email = "developers@pex-tool.org"
home-page = "https://github.com/pex-tool/lambdex"
description-file = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
]
requires = ["pex>=1.1.15"]
requires-python = ">=2.7,<3.13,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*"
[tool.flit.metadata.requires-extra]
test-gcp-http = [
"flask==1.1.4; python_version < '3.6'",
"flask==2.0.3; python_version >= '3.6' and python_version < '3.7'",
"flask==2.2.2; python_version >= '3.7'",
]
[tool.flit.scripts]
lambdex = "lambdex.bin.lambdex:main"
[tool.flit.sdist]
include = ["CHANGES.md"]
[tool.flit.metadata.urls]
Changelog = "https://github.com/pex-tool/lambdex/blob/main/CHANGES.md"
[tool.black]
line-length = 100
target-version = ["py27"]
exclude = '''
/(
| \.git
)/
'''
[tool.isort]
profile = "black"
line_length = 100
known_first_party = "lambdex"