-
-
Notifications
You must be signed in to change notification settings - Fork 844
/
pyproject.toml
46 lines (38 loc) · 1.15 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
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "tkdesigner"
version = "1.0.6"
description = "CLI Package for Tkinter-Designer"
authors = ["ParthJadhav <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/ParthJadhav/Tkinter-Designer"
repository = "https://github.com/ParthJadhav/Tkinter-Designer"
documentation = "https://github.com/ParthJadhav/Tkinter-Designer"
keywords = ["tkinter", "drag-and-drop", "figma", "gui", "easy"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ParthJadhav/Tkinter-Designer/issues"
[tool.poetry.dependencies]
python = "^3.8"
requests = "2.25.1"
Jinja2 = "3.0.1"
Pillow = "^8.4.0"
urllib3 = "^1.26.6"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
flake8 = "^3.9.2"
pylint = "^2.9.6"
[tool.poetry.scripts]
tkdesigner = 'tkdesigner.cli:main'
[[tool.poetry.source]]
name = "tkdesigner"
url = "https://test.pypi.org/project/tkdesigner/"
default = false
secondary = false
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"