-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (57 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
71 lines (57 loc) · 1.46 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kepler"
description = "UMinho's Informatic Engineering schedule generator"
version = "0.0.1"
authors = [
{name = "CAOS", email = "caos@cesium.di.uminho.pt"},
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">= 3.12"
keywords = ["scheduler", "milp", "integer-programming"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Office/Business :: Scheduling",
"Typing :: Typed"
]
dependencies = [
"pulp",
"starlette",
"uvicorn"
]
optional-dependencies.dev = [
"coverage",
"mypy",
"pytest"
]
[project.urls]
Homepage = "https://github.com/cesium/kepler"
Repository = "https://github.com/cesium/kepler"
"Bug Tracker" = "https://github.com/cesium/kepler/issues"
[project.scripts]
kepler = "kepler.__main__:main"
[tool.coverage]
run.branch = true
run.command_line = "-m pytest"
run.source = ["kepler/"]
html.directory = "coverage"
[tool.mypy]
packages = ["kepler", "tests"]
strict = true
[[tool.mypy.overrides]]
module = ["pulp.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools]
packages = ["kepler"]