Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add info for project release #21

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: add info for project release
  • Loading branch information
danfimov committed Sep 25, 2023
commit ac5700d6d329f5f39087ff96aafaa04be2ab9e4a
34 changes: 1 addition & 33 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,36 +9,4 @@ Async Yandex Tracker Client based on aiohttp and pydantic (v2)
- Working with issue relationships
- Getting user information

# TBD

## Issues

- [ ] Перенести задачу в другую очередь
- [ ] Узнать количество задач
- [ ] Найти задачи
- [ ] Освободить ресурсы просмотра прокрутки
- [ ] Выполнить переход в статус
- [ ] Получить историю изменений задачи

## Queues - automation

- [ ] Создать автодействие
- [ ] Получить параметры автодействия
- [ ] Создать триггер
- [ ] Получить параметры триггера

# TBD in a long run

- Checklists
- Projects
- Comments
- Macros
- Internal links
- Attachments
- Tables of tasks
- Components
- Import
- Package operations
- Time scoring
- Issues fields
- Users
More info about work status here: https://github.com/danfimov/ya_tracker_client/milestone/1
33 changes: 31 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,40 @@
[tool.poetry]
name = "ya_tracker_client"
version = "0.1.0"
version = "0.0.1"
description = "Async Yandex Tracker Client"
authors = ["Дмитрий Анфимов <[email protected]>"]
authors = [
"Дмитрий Анфимов <[email protected]>",
]
maintainers = [
"Дмитрий Анфимов <[email protected]>",
]
keywords = [
"Yandex",
"Tracker",
"API",
"async",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
license = "MIT"
readme = "README.md"
packages = [{include = "ya_tracker_client"}]
repository = "https://github.com/danfimov/ya_tracker_client/"
exclude = [
"examples/"
]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/danfimov/ya_tracker_client/issues"

[[tool.poetry.source]]
name = "default-pypi"
Expand Down
Loading