-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 1018 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
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "Simulator"
version = "0.0.1"
description = "A simulator for distributed real time systems project"
authors = [
{ name = "group74", email = "your@email.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies", "optional-dependencies"]
[project.scripts]
simulator = "VerySimpleSimulator.src.very_simple_simulator:app"
run_cycle = "VerySimpleSimulator.src.very_simple_simulator:run_cycle"
[tool.setuptools.packages.find]
where = ["Exercises"]
include = ["Exercises.*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ["requirements_dev.txt"]}
[tool.ruff]
line-length = 120
lint.select = ["I"]
[tool.coverage.run]
omit = ["tests/*"]