-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
55 lines (46 loc) · 1.39 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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "stack-pr"
authors = [
{name = "Modular Inc", email = "hello@modular.com"},
]
maintainers = [
{name = "Modular Inc", email = "hello@modular.com"}
]
description = "Stacked PR CLI for Github"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["stacked-prs", "github", "pull-requests", "stack-pr", "git", "version-control"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control :: Git",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
]
# Version is dynamically set by pdm by the SCM version
dynamic = ["version"]
dependencies = []
[project.urls]
Homepage = "https://github.com/modularml/stack-pr"
Repository = "https://github.com/modularml/stack-pr"
"Bug Tracker" = "https://github.com/modularml/stack-pr/issues"
[project.scripts]
stack-pr = "stack_pr.cli:main"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
fallback_version = "0.1.0"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64", "linux-aarch64"]
[tool.pixi.pypi-dependencies]
stack-pr = { path = ".", editable = true }
pdm = ">=2.17.1,<2.18"
[tool.pixi.tasks]
[tool.pixi.dependencies]
python = ">=3.8"