-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (68 loc) · 1.99 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
71
72
73
74
75
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "DeepAoI"
version = "0.0.1"
description = "Age-of-Information Model for Deep Learning-Aided wireless networks"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["Age-of-Information", "URLLC", "age of inforamation model","Deep Learning", "Deep Learning for wireless networks", "Deep Learning in Physical Layer Communications"]
license = {text = "MIT"}
authors = [ { name = "Chathuranga Basanayaka", email = "[email protected]" },
]
dependencies = [ "numpy", "pandas" , "tabulate", "matplotlib", "scipy"] # Not really required
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering" ]
[project.scripts]
ageplot = "agenet.plot:plotshow"
ageprint = "agenet.printage:printage"
[project.urls]
"Homepage" = "https://github.com/cahthuranag/DeepAoI"
#"Bug Tracker" = ""
"Documentation" = "https://github.com/cahthuranag/DeepAoI/blob/main/README.md"
[project.optional-dependencies]
dev = [
"pdoc",
"pytest", "pytest-cov", "pytest-console-scripts", "coverage", "codecov" ,"pre-commit"
]
[tool.setuptools]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v --tb=short --strict-markers"
testpaths = [ "tests" ]
#xfail_strict = "true"
markers = [
"critical: The most critical tests",
"get: Test functions which return some value",
"fast: The fast tests" ]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
src_paths = ["agenet", "tests"]
line_length = 88
skip_gitignore = "True"
[tool.flake8]
extend-select = ["B9", "C4"]
max-line-length = 88
max-doc-length = 88
ignore = [ "B018", "SIM106", "W503" ]
doctests = true
exclude = [
".git",
"__pycache__",
".*cache",
"build",
"dist",
"env",
"venv",
".eggs",
"*.egg",
"docs" ]
# flake8-docstrings
docstring-convention = "google"