-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.74 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "lapis.caching"
version = "0.1.0"
description = "LAPIS extension to simulate caching"
authors = ["Eileen Kuehn <eileen.kuehn@kit.edu>", "Max Fischer <max.fischer@kit.edu"]
maintainers = ["MatterMiners <matterminers@lists.kit.edu>"]
license = "MIT"
readme = "README.md"
homepage = "https://matterminers.github.io"
repository = "https://github.com/MatterMiners/lapis.caching"
keywords = ["caching", "simulation", "opportunistic", "scheduling", "scheduler"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
]
packages = [
{ include = "lapis" }
]
[tool.poetry.dependencies]
python = "^3.6.1"
lapis-sim = { git = "https://github.com/MatterMiners/lapis.git", branch = "cleanup/caching" }
classad = "^0.4.0"
Sphinx = { version = "^3.3.1", optional = true }
sphinx-rtd-theme = { version = "^0.5.0", optional = true }
sphinxcontrib-contentui = { version = "^0.2.5", optional = true }
sphinx-click = { version = "^2.5.0", optional = true }
change-log = { version = "^0.2.0", optional = true }
pytest = { version = ">= 4.3.0", optional = true }
flake8 = { version = "^3.8.4", optional = true }
flake8-bugbear = { version = "^20.11.1", optional = true }
black = { version = "^20.8b1", markers = "implementation_name=='cpython'", optional = true }
[tool.poetry.dev-dependencies]
pre-commit = "^2.9.3"
[tool.poetry.extras]
doc = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-contentui",
"sphinx-click",
"change-log",
]
test = [
"pytest",
"flake8",
"flake8-bugbear",
"black"
]
[tool.poetry.scripts]
simulate = 'lapis.cli.simulate:cli'