-
Notifications
You must be signed in to change notification settings - Fork 55
/
pyproject.toml
44 lines (40 loc) · 1000 Bytes
/
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
[tool.poetry]
name = "ghstack"
version = "0.9.4"
authors = ["Edward Z. Yang <[email protected]>"]
description = "Stack diff support for GitHub"
readme = "README.md"
repository = "https://github.com/ezyang/ghstack"
include = ["ghstack/py.typed"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
ghstack = "ghstack.cli:main"
[tool.poetry.dependencies]
aiohttp = "^3"
importlib-metadata = { version = ">=1.4", python = "<3.8" }
python = "^3.8.1"
requests = "^2"
typing-extensions = ">=3 <5"
click = "^8"
flake8 = "^7.0.0"
[tool.poetry.dev-dependencies]
black = "^24.3.0"
flake8 = "^7"
graphql-core = "^3"
hypothesis = "^6"
mypy = "^1"
pytest = "^7"
usort = "^1"
ufmt = "^2"
lintrunner = "^0.11.0"
types-requests = "^2.31.0.10"
pytest-xdist = "^3.5.0"
expecttest = "^0.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"