-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.09 KB
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
[project]
name = "sortinghat-eclipse-foundation"
version = "0.2.5"
description = "SortingHat backend to import identities from the Eclipse Foundation"
authors = [
{name = "Bitergia Developers"}
]
readme = "README.md"
homepage = "https://chaoss.github.io/grimoirelab/"
repository = "https://github.com/bitergia-analytics/sortinghat-eclipse-foundation"
keywords = [
"development",
"grimoirelab",
"sortinghat"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.10,<4.0"
dependencies = [
"requests-oauth2client (>=1.7.0,<2.0.0)",
"sortinghat (>=1.10.0,<2.0.0)"
]
[tool.poetry]
packages = [
{ include = "sortinghat" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.group.dev.dependencies]
httpretty = "^1.1.4"
flake8 = "^7.1.1"
[tool.poetry.dependencies]
sortinghat = {allow-prereleases = true}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"