22build-backend = " poetry.core.masonry.api"
33requires = [" poetry-core>=1.0.0" ]
44
5+ [project ]
6+ name = " aiogithubapi"
7+ version = " 0"
8+ description = " Asynchronous Python client for the GitHub API"
9+ readme = " README.md"
10+ license = { text = " MIT" }
11+ dynamic = [" readme" , " classifiers" , " dependencies" , " optional-dependencies" ]
12+ requires-python = " >=3.9"
13+ authors = [
14+ { name = " Ludeeus" , email = " joasoe@proton.me" },
15+ ]
16+ maintainers = [
17+ { name = " Ludeeus" , email = " joasoe@proton.me" },
18+ ]
19+ [project .optional-dependencies ]
20+ "deprecated-verify" = [
21+ " sigstore <2" ,
22+ " securesystemslib <1" ,
23+ " setuptools >=60.0.0"
24+ ]
25+
26+ [project .urls ]
27+ "Repository" = " https://github.com/ludeeus/aiogithubapi"
28+ "Bug tracker" = " https://github.com/ludeeus/aiogithubapi/issues"
29+
530[tool .poetry ]
6- authors = [" Ludeeus <ludeeus@ludeeus.dev>" ]
731classifiers = [
832 " Intended Audience :: Developers" ,
933 " Natural Language :: English" ,
1034 " Topic :: Software Development :: Libraries :: Python Modules" ,
1135]
12- description = " Asynchronous Python client for the GitHub API "
36+
1337exclude = [' **/__pycache__' ]
1438include = [" aiogithubapi" , " aiogithubapi.*" , " LICENCE.md" ]
15- license = " MIT"
16- maintainers = [" Ludeeus <ludeeus@ludeeus.dev>" ]
17- name = " aiogithubapi"
18- readme = " README.md"
19- repository = " https://github.com/ludeeus/aiogithubapi"
20- version = " 0"
2139
2240[tool .poetry .dependencies ]
23- python = " ^3.8 "
41+ python = " ^3.9 "
2442aiohttp = " ^3.8"
2543async-timeout = " ^5"
2644backoff = " <3"
2745
28- # Optional dependencies for deprecated-verify
29- sigstore = { version = " <2" , optional = true }
30- securesystemslib = { version = " <1" , optional = true }
31- setuptools = { version = " >=60.0.0" , optional = true }
3246
33- [tool .poetry .dev- dependencies ]
47+ [tool .poetry .group . dev . dependencies ]
3448aresponses = " ^3.0.0"
3549black = " ^24.8.0"
3650isort = " ^5.12.0"
@@ -41,8 +55,6 @@ pytest = "^8.3.4"
4155pytest-asyncio = " ^0.24.0"
4256pytest-cov = " ^5.0.0"
4357
44- [tool .poetry .extras ]
45- deprecated-verify = [" sigstore" , " securesystemslib" , " setuptools" ]
4658
4759[tool .black ]
4860line-length = 100
@@ -57,7 +69,6 @@ profile = "black"
5769[tool .pylint .'MESSAGES CONTROL' ]
5870disable = " unsubscriptable-object,duplicate-code"
5971
60-
6172[tool .coverage .run ]
6273source = [" aiogithubapi" ]
6374omit = [" setup.py" , " example.py" , " tests/*" ]
0 commit comments