-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (44 loc) · 1.22 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
[tool.poetry]
name = "grimoirelab-chronicler"
version = "0.0.1"
description = "Generator of GrimoireLab events using Perceval data."
authors = [
"GrimoireLab Developers"
]
license = "GPL-3.0+"
readme = "README.md"
homepage = "https://chaoss.github.io/grimoirelab/"
repository = "https://github.com/chaoss/grimoirelab-chronicler"
keywords = [
"software analytics",
"events",
"grimoirelab"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"
]
packages = [
{ include = "chronicler"},
]
include = [
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]
[tool.poetry.scripts]
chronicler = "chronicler.chronicler:chronicler"
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.7"
cloudevents = "^1.10.1"
[tool.poetry.group.dev.dependencies]
flake8 = ">=4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"