-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 915 Bytes
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
[build-system]
requires = ["setuptools >= 62.0"]
build-backend = "setuptools.build_meta"
[project]
name = "java-test-analyzer"
version = "0.1.0"
authors = [
{ name="Cem Akarsubasi", email="cemakarsubasi@gmail.com" },
{ name="Franciszek Gorczyca", email="fr.gorczyca@gmail.com" },
{ name="Maks Cebula", email="uselessmail11111@gmail.com" },
{ name="Oliver Stenberg Jakobsen", email="oliver@stenberg-jakobsen.dk" },
]
description = "For DTU 02242 Program Analysis Class"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["data/*"]
namespaces = true
[project.urls]
"Homepage" = "https://github.com/frgorczyca/program_analysis_project_2023"
"Bug Tracker" = "https://github.com/frgorczyca/program_analysis_project_2023/issues"