-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.1 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
[project]
authors = [
{name = "Edward Z. Yang", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = "<4.0.0,>=3.8.1"
dependencies = [
"aiohttp<4,>=3",
"importlib-metadata>=1.4; python_version < \"3.8\"",
"requests<3,>=2",
"typing-extensions>=3",
"click<9,>=8",
"flake8<8.0.0,>=7.0.0",
]
name = "ghstack"
version = "0.10.0"
description = "Stack diff support for GitHub"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
repository = "https://github.com/ezyang/ghstack"
[project.scripts]
ghstack = "ghstack.cli:main"
[dependency-groups]
dev = [
"black<25.0.0,>=24.3.0",
"flake8<8,>=7",
"graphql-core<4,>=3",
"hypothesis<7,>=6",
"mypy<2,>=1",
"pytest<8,>=7",
"usort<2,>=1",
"ufmt<3,>=2",
"lintrunner<1.0.0,>=0.11.0",
"types-requests<3.0.0.0,>=2.31.0.10",
"pytest-xdist<4.0.0,>=3.5.0",
"expecttest<1.0.0,>=0.2.0",
]
[build-system]
requires = ["uv_build>=0.6,<0.7"]
build-backend = "uv_build"