-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.15 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "sonar_dummy_python_oss"
version = "0.1.0"
authors = [
"Jayadeep Kinavoor Madam <[email protected]>",
]
description = "A sample python project used for testing purposes"
readme = "README.md"
license = "LGPL-3.0-only"
keywords = [
"sonar",
"sonar-dummy"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Quality Assurance",
]
packages = [{ include = "sonar_dummy_python_oss", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.8"
[project.urls]
Homepage = "https://github.com/SonarSource/ssonar-dummy-python-oss"
Repository = "https://github.com/SonarSource/sonar-dummy-python-oss"