-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (38 loc) · 1.26 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
#
# pyproject.toml file for clumio-code/azure-sdk-trim
#
[build-system]
requires = ['setuptools>=69.2.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'azure-sdk-trim'
# Keep the version in sync in the sonar-project.properties file.
version = '0.2.2'
description = 'Azure SDK Trim tool'
readme = 'README.md'
authors = [ {name = 'Clumio Inc.'} ]
license = {file = 'LICENSE'}
requires-python = '>=3.8'
keywords = ['azure', 'sdk', 'clumio']
dynamic = ['dependencies', 'optional-dependencies']
[project.urls]
Homepage = 'https://github.com/clumio-code/azure-sdk-trim'
Documentation = 'https://github.com/clumio-code/azure-sdk-trim?tab=readme-ov-file'
Repository = 'https://github.com/clumio-code/azure-sdk-trim'
Issues = 'https://github.com/clumio-code/azure-sdk-trim/issues'
Changelog = 'https://github.com/clumio-code/azure-sdk-trim/releases'
[project.scripts]
azure-sdk-trim = 'azure_sdk_trim.azure_sdk_trim:entry_point'
[tool.setuptools.dynamic]
dependencies = {file = ['requirements.txt']}
optional-dependencies.dev = { file = ['requirements-dev.txt'] }
[tool.coverage.run]
source = ['azure_sdk_trim']
[tool.coverage.report]
exclude_lines = [
'pragma: no cover',
'if __name__ == .__main__.:',
'if TYPE_CHECKING:',
]
[tool.pylint]
max-line-length = 100