-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.16 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
[tool.poetry]
name = "grainyhead"
version = "0.3.2"
description = "Helper tools for GitHub"
license = "GPL-3.0-or-later"
authors = ["Damien Goutte-Gattat <[email protected]>"]
readme = "README.md"
homepage = "https://incenp.org/dvlpt/grainyhead.html"
repository = "https://github.com/gouttegd/grainyhead"
documentation = "https://incenp.org/dvlpt/grainyhead/"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers"
]
packages = [{include = "incenp", from = "src"}]
include = [
{ path = "CITATION.cff", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "docs", format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.9"
click-shell = ">=2.1"
ghapi = "*"
python-dateutil = "*"
pyparsing = ">=3.0.0"
ipython = { version = "*", optional = true }
[tool.poetry.extras]
IPython = ["ipython"]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-rtd-theme = "*"
[tool.poetry.scripts]
grainyhead = "incenp.grainyhead.main:grh"
[tool.black]
skip-string-normalization = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"