-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6476dff
commit 03d2733
Showing
4 changed files
with
50 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,44 @@ | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "integrify" | ||
version = "1.0.1" | ||
version = "1.0.2" | ||
description = "Integrify API inteqrasiyalarını rahatlaşdıran sorğular kitabaxanasıdır." | ||
authors = ["mmzeynalli <[email protected]>", "vahidzhe <[email protected]>"] | ||
license = "GPL-3.0-or-later" | ||
authors = [ | ||
"mmzeynalli <[email protected]>", | ||
"vahidzhe <[email protected]>" | ||
] | ||
readme = "README.md" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/mmzeynalli/integrify" | ||
Documentation = "https://integrify.mmzeynalli.dev/" | ||
Repository = "https://github.com/mmzeynalli/integrify" | ||
Issues = "https://github.com/mmzeynalli/integrify/issues" | ||
homepage = "https://github.com/mmzeynalli/integrify" | ||
repository = "https://github.com/mmzeynalli/integrify" | ||
documentation = "https://integrify.mmzeynalli.dev/" | ||
classifiers = [ | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: System Administrators", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python", | ||
"Topic :: Internet", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Topic :: Software Development :: Libraries", | ||
"Topic :: Software Development", | ||
"Typing :: Typed", | ||
"Environment :: Web Environment", | ||
"Framework :: AsyncIO", | ||
"Framework :: Pydantic", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GPL3 License", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Internet :: WWW/HTTP :: HTTP Servers", | ||
"Topic :: Internet :: WWW/HTTP", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
|
@@ -26,15 +55,10 @@ ptpython = "^3.0.29" | |
mkdocs-material = "^9.5.36" | ||
mkdocstrings = {extras = ["python"], version = "^0.26.1"} | ||
|
||
|
||
[tool.poetry.group.mypy.dependencies] | ||
types-requests = "^2.32.0.20240712" | ||
|
||
[tool.ruff] | ||
target-version = "py311" | ||
line-length = 100 | ||
|
||
|
||
[tool.ruff.lint] | ||
select = [ | ||
# Pyflakes | ||
|
@@ -53,6 +77,3 @@ quote-style = "single" | |
[tool.ruff.lint.flake8-quotes] | ||
docstring-quotes = "double" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |