Files
turkanime-client/pyproject.toml
T
Barış Keser db3fb6f0d2 Bump version to 9.3.5 and update authors order in pyproject.toml
- Added inclusion of TurkAnimu.png and TurkAnimu.ico for sdist and wheel formats.
- Changed dev-dependencies section to group.dev.dependencies and added toml as a dependency.

Update download directory setting in Dosyalar class to use the user's Downloads folder.

Enhance MainWindow with User ID entry and automatic update check functionality.
- Added a new section for other settings in the GUI.
- Implemented silent update check method.

Refactor UpdateManager to read current version from pyproject.toml if not provided.
- Updated download directory retrieval to use the path from ayarlar.json.
2025-09-24 05:25:51 +03:00

64 lines
1.9 KiB
TOML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[tool.poetry]
name = "turkanime-gui"
version = "9.3.5"
description = "Türkanime video oynatıcı ve indirici"
authors = ["barkeser2002 <bariskeser@bariskeser.com>", "Junicchi <junicchi@waifu.club>"]
readme = "README.md"
license = "CC-BY-NC-ND-4.0"
repository = "https://github.com/barkeser2002/turkanime-indirici"
keywords = ["turkanime","turk","anime","downloader"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
packages = [
{ include = "turkanime_api" }
]
include = [
{ path = "docs/TurkAnimu.png", format = "sdist" },
{ path = "docs/TurkAnimu.ico", format = "sdist" },
{ path = "docs/TurkAnimu.png", format = "wheel" },
{ path = "docs/TurkAnimu.ico", format = "wheel" },
]
[tool.poetry.dependencies]
python = ">=3.9,<4"
yt-dlp = { version = "*", extras = ["default", "curl-cffi"] }
curl-cffi = ">=0.13"
pycryptodome = "*"
appdirs = "*"
questionary = "*"
py7zr = "*"
rich = ">=13.0.0"
easygui = ">=0.98.2"
# PyQt6 bazı Linux/musl ve yeni Python kombinasyonlarında tekerlek yayınlamayabilir.
# Bu nedenle opsiyonel yapıyoruz; GUI isteyenler extras ile kurabilir.
# PyQt6 = { version = ">=6.5", optional = true }
customtkinter = { version = ">=5.2.0", optional = true }
[tool.poetry.extras]
gui = ["customtkinter"]
[tool.poetry.group.dev.dependencies]
toml = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# Publish sırasında yapılması gerekenler:
# turkanime_api/version.py dosyasındaki build, pip olarak değişmeli.
# poetry build; poetry install; poetry publish
turkanime = 'turkanime_api.cli.__main__:main'
turkanime-cli = 'turkanime_api.cli.__main__:main'
turkanime-gui = 'turkanime_api.gui.main:run'