-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.1 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
[tool.poetry]
name = "asynctkinter"
version = "0.4.2"
description = "async library for tkinter"
authors = ["Nattōsai Mitō <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = 'https://github.com/gottadiveintopython/asynctkinter'
homepage = 'https://github.com/gottadiveintopython/asynctkinter'
keywords = ['async', 'tkinter', ]
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
]
packages = [
{ include = "asynctkinter", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10.0"
asyncgui = ">=0.7,<0.9"
asyncgui-ext-clock = "~0.5"
[tool.poetry.group.dev.dependencies]
requests = "^2.32.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"