forked from chaoss/grimoirelab-perceval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (65 loc) · 1.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "perceval"
version = "0.19.1"
description = "Send Sir Perceval on a quest to fetch and gather data from software repositories."
authors = [
"GrimoireLab Developers"
]
license = "GPL-3.0+"
readme = "README.md"
homepage = "https://chaoss.github.io/grimoirelab/"
repository = "https://github.com/chaoss/grimoirelab-perceval"
keywords = [
"development",
"grimoirelab"
]
packages = [
{ include = "perceval" },
{ include = "tests", format = "sdist" },
]
include = [
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/chaoss/grimoirelab-perceval/issues"
[tool.poetry.scripts]
perceval = 'perceval.perceval:main'
[tool.poetry.dependencies]
python = "^3.7"
python-dateutil = "^2.6.0"
requests = "^2.7.0"
beautifulsoup4 = "^4.3.2"
feedparser = "^6.0.8"
dulwich = "^0.20.0"
urllib3 = "^1.26"
PyJWT = "^2.4.0"
cryptography = "^3.3.2"
grimoirelab-toolkit = { version = ">=0.3", allow-prereleases = true}
# Documentation
myst-parser = { version = "^0.15.2", optional = true }
furo = { version = "^2021.8.31", optional = true }
[tool.poetry.dev-dependencies]
httpretty = "^1.1.4"
flake8 = "^3.9.1"
coverage = "^5.5"
[tool.poetry.extras]
docs = [
"furo",
"myst-parser",
]
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools>=30.3.0,<50"
]
build-backend = "poetry.core.masonry.api"