-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
74 lines (66 loc) · 2.04 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
[tool.poetry]
name = "pagure-exporter"
version = "0.1.3"
description = "Simple exporter tool that helps migrate repository files, data assets and issue tickets from projects on Pagure to GitLab"
authors = [
"Akashdeep Dhar <[email protected]>",
"Onuralp SEZER <[email protected]>",
]
license = "GPL-3.0-or-later"
maintainers = [
"Akashdeep Dhar <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/gridhead/pagure-exporter"
repository = "https://github.com/gridhead/pagure-exporter"
documentation = "https://github.com/gridhead/pagure-exporter/blob/main/README.md"
keywords = [
"fedora",
"pagure",
"gitlab"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development",
"Topic :: System :: Networking",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Archiving",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.11"
requests = "^2.28.0"
click = "^8.1.3"
GitPython = "^3.1.0"
python-gitlab = ">=3.14.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0 || ^4.0.0"
black = "^22.8.0 || ^23.0.0 || ^24.0.0"
tox = "^4.0.0"
pytest = "^7.1.3 || ^8.0.0"
pytest-cov = "^4.1.0 || ^5.0.0"
ruff = "^0.0.285 || ^0.1.0 || ^0.2.0 || ^0.3.0 || ^0.4.0 || ^0.5.0 || ^0.6.0"
vcrpy = "^5.1.0 || ^6.0.0"
pytest-recording = "^0.13.0"
[tool.ruff]
line-length = 100
fix = true
[tool.ruff.lint]
select = ["E", "F", "W", "I", "S", "B", "UP"]
[tool.ruff.lint.per-file-ignores]
"test/*" = ["UP031"]
"pagure_exporter/*" = ["UP031"]
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pagure-exporter = "pagure_exporter.main:main"