Skip to content

Commit 201f63e

Browse files
Rework deps
1 parent af9083f commit 201f63e

File tree

3 files changed

+28
-28
lines changed

3 files changed

+28
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Make sure that you have your API key set as an environment variable:
2323
export NEXTMV_API_KEY=<your-API-key>
2424
```
2525

26-
Additionally, you must have a valid app pushed to the Nextmv Cloud.
26+
Additionally, you must have a valid app in the Nextmv Cloud.
2727

2828
- Make a run and get the results.
2929

pyproject.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
[build-system]
2-
requires = ["hatchling >= 1.13.0"]
32
build-backend = "hatchling.build"
3+
requires = ["hatchling >= 1.13.0"]
44

55
[project]
6-
name = "nextmv"
7-
description = "The Python SDK for Nextmv"
8-
readme = "README.md"
9-
requires-python = ">=3.10"
10-
license = {file = "LICENSE"}
116
authors = [
12-
{ name = "Nextmv", email = "tech@nextmv.io" }
13-
]
14-
keywords = [
15-
"nextmv",
16-
"optimization",
17-
"decision science",
18-
"operations research",
19-
"solver",
20-
"vehicle routing problem",
21-
"shift scheduling",
22-
"decisions",
23-
"decision engineering",
7+
{ email = "tech@nextmv.io", name = "Nextmv" }
248
]
259
classifiers = [
26-
"Programming Language :: Python :: 3",
2710
"License :: OSI Approved :: Apache Software License",
2811
"Operating System :: OS Independent",
12+
"Programming Language :: Python :: 3",
2913
]
30-
version = "0.1.0-dev.1"
3114
dependencies = [
32-
"pydantic>=2.5.2,<3.0.0",
33-
"requests>=2.31.0,<3.0.0",
15+
"pydantic>=2.5.2",
16+
"requests>=2.31.0",
17+
]
18+
description = "The Python SDK for Nextmv"
19+
keywords = [
20+
"decision engineering",
21+
"decision science",
22+
"decisions",
23+
"nextmv",
24+
"optimization",
25+
"operations research",
26+
"shift scheduling",
27+
"solver",
28+
"vehicle routing problem",
3429
]
30+
license = { file = "LICENSE" }
31+
name = "nextmv"
32+
readme = "README.md"
33+
requires-python = ">=3.10"
34+
version = "0.1.0-dev.1"
3535

3636
[project.urls]
3737
Homepage = "https://www.nextmv.io"

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
build==1.0.3,<2.0.0
2-
pydantic>=2.5.2,<3.0.0
3-
requests==2.31.0,<3.0.0
4-
ruff==0.1.7,<0.2.0
5-
twine==4.0.2,<5.0.0
1+
build>=1.0.3
2+
pydantic>=2.5.2
3+
requests>=2.31.0
4+
ruff>=0.1.7
5+
twine>=4.0.2

0 commit comments

Comments
 (0)