-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (68 loc) · 1.62 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling >= 1.13.0"]
[project]
authors = [
{ email = "[email protected]", name = "Nextmv" }
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"requests>=2.31.0",
"pathos>=0.3.2",
"nextmv>=0.13.1",
"dataclasses-json>=0.6.7",
]
description = "Framework for Decision Pipeline modeling and execution"
dynamic = [
"version",
]
keywords = [
"decision engineering",
"decision science",
"decisions",
"nextmv",
"optimization",
"operations research",
"pipelines",
"workflows",
"decision pipelines",
"decision workflows",
"decision automation",
]
license = { file = "LICENSE.md" }
maintainers = [
{ email = "[email protected]", name = "Nextmv" }
]
name = "nextpipe"
readme = "README.md"
requires-python = ">=3.8"
[project.urls]
Homepage = "https://www.nextmv.io"
Documentation = "https://www.nextmv.io/docs"
Repository = "https://github.com/nextmv-io/nextpipe"
[tool.ruff]
target-version = "py38"
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
line-length = 120
[tool.hatch.version]
path = "nextpipe/__about__.py"
[project.optional-dependencies]
dev = [
"ruff>=0.6.4",
]