-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (62 loc) · 1.86 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
66
67
68
69
70
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "martepy"
version = "1.0.1"
description = """This repository provides python classes which represent MARTe2 GAMs, DataSources and applications. Alongside this it provides useful frameworks for debugging and developing applications with MARTe2."""
readme = "README.md"
authors = [
{ name = "Edward Jones", email = "edward.jones1@ukaea.uk" }
]
license = { text = "" } # Add your license here, if any.
requires-python = ">=3"
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
"numpy",
"pyqt5",
"qtpy",
"nodeeditor"
]
[project.urls]
"Homepage" = "https://github.com/ukaea/MARTe2-python"
[tool.setuptools.packages.find]
include = ["martepy", "martepy.*"]
[tool.setuptools.package-data]
"martepy.marte2.datasources" = ["*.json", "martepy/marte2/datasources/datasources.json"]
"martepy.marte2.gams" = ["*.json", "martepy/marte2/gams/gams.json"]
"martepy.marte2.objects" = ["*.json", "martepy/marte2/objects/objects.json"]
"martepy.frameworks" = ["*.json", "martepy/frameworks/end.json"]
"martepy.marte2.templates" = ["*.txt", "martepy/marte2/templates/*.txt"]
[tool.pylint]
disable = [
"C0413",
"R0902",
"W0102",
"R0913",
"W0401",
"C0302",
"R0917",
"R0801",
"E0611",
"R0903",
"I1101"
]
max-line-length = 100
ignore = ["tests", "docs", "examples", "build"]
method-naming-style="camelCase"
function-naming-style="camelCase"
variable-naming-style="any"
class-attribute-naming-style="any"
argument-naming-style="snake_case"
[tool.coverage.run]
omit = ["tests/*", "examples/*", "docs/*", ".pytest_cache/*", "htmlcov/*", "public/*"]
[tool.coverage.report]
omit = ["tests/*", "docs/*"]
show_missing = true
precision = 2
[tool.coverage.html]
directory = "htmlcov"
title = "Coverage Report for MARTe2 Python"