-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 781 Bytes
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
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "uplan"
description = "ㅓ"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["litellm>=1.63.6", "rich>=13.9.4", "tomli-w>=1.2.0", "click"]
dynamic = ["version"]
[dependency-groups]
dev = ["pytest"]
[project.urls]
source = "https://github.com/easydevv/uplan"
[project.scripts]
uplan = "uplan.main:main"
[tool.setuptools]
packages = ["uplan"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"