-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (79 loc) · 2.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SLAMBUC"
dynamic = ["version", "readme"]
description = "Serverless Layout Adaptation with Memory-Bounds and User Constraints"
authors = [{ name = "Janos Czentye", email = "czentye@tmit.bme.hu" }]
license = { text = "Apache 2.0" }
requires-python = ">=3.10"
keywords = ["cloud", "serverless", "ilp", "dp", "tree"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
'cspy~=1.0.3',
'matplotlib~=3.9.1',
'networkx~=3.3',
'numpy~=1.26.4',
'pandas~=2.2.2',
'PuLP~=2.9.0',
'scipy~=1.14.0'
]
[project.urls]
"Repository" = "https://github.com/hsnlab/SLAMBUC"
"Homepage" = "https://github.com/hsnlab/SLAMBUC/wiki"
"Issue Tracker" = "https://github.com/hsnlab/SLAMBUC/issues"
[project.optional-dependencies]
tests = [
'pygraphviz~=1.13',
'pytest~=8.2.2',
'tabulate~=0.9.0'
]
validation = [
'tabulate~=0.9.0',
'Click~=8.1.7',
'psutil~=6.0.0'
]
doc = [
'pydoc-markdown~=4.8.2'
]
[tool.setuptools.dynamic]
version = { attr = "slambuc.__version__" }
readme = { file = ["README.md"], content-type = 'text/markdown' }
[tool.setuptools.packages.find]
exclude = [
"tests",
"tests.*",
"validation",
"validation.*"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = [
'*.pkl',
'*.csv'
]
## Documentation
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = ["slambuc"]
#[[tool.pydoc-markdown.processors]]
#type = ["filter", "smart", "crossref"]
[tool.pydoc-markdown.renderer]
type = "mkdocs"
[[tool.pydoc-markdown.renderer.pages]]
title = "SLAMBUC API Documentation"
name = "index"
contents = ["slambuc", "slambuc.*"]
#[[tool.pydoc-markdown.renderer.mkdocs_config]]
#site_name = "SLAMBUC"
#repo_url = "https://github.com/hsnlab/SLAMBUC"