forked from ezyang/ghstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 885 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
[tool.poetry]
name = "ghstack"
version = "0.6.0"
authors = ["Edward Z. Yang <ezyang@mit.edu>"]
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.__main__:main"
[tool.poetry.dependencies]
aiohttp = "^3"
dataclasses = { version = "^0.8", python = "<3.7" }
importlib-metadata = "^3"
python = "^3.6"
requests = "^2"
typing-extensions = ">=3 <5"
[tool.poetry.dev-dependencies]
expecttest = "^0.1"
flake8 = "^3"
graphql-core = "^3"
hypothesis = "^6"
isort = "^5"
mypy = "^0.800"
pytest = "^6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"