-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
60 lines (52 loc) · 1.51 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
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
[tool.poetry]
name = "gitea-github-sync"
version = "0.2.0"
homepage = "https://github.com/Muscaw/gitea-github-sync"
description = "Syncs your gitea instance with your Github account"
authors = ["Kevin Grandjean <Muscaw@users.noreply.github.com>"]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
packages = [{include = "gitea_github_sync"}]
[tool.poetry.scripts]
gitea-github-sync = "gitea_github_sync.cli:cli"
[tool.poetry.dependencies]
python = "^3.8.1"
pygithub = ">=1.57,<3.0"
click = "^8.1.3"
piny = ">=0.6,<1.2"
pydantic = ">=1.10.4,<3.0.0"
rich = "^13.0.0"
requests = "^2.28.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2,<9.0"
black = ">=22.12,<25.0"
flake8 = ">=6,<8"
isort = "^5.11.4"
mypy = ">=0.991,<1.11"
tox = "^4.1.1"
pytest-cov = "^4.0.0"
responses = ">=0.22,<0.26"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"