forked from iamDyeus/tkreload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.22 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
47
48
[build-system]
requires = [
"setuptools >= 64",
"setuptools_scm >= 6.4"
]
build-backend = "setuptools.build_meta"
[project]
name = "tkreload"
description = "A library that auto reloads your tkinter app whenever file changes are detected."
readme = "README.md"
authors = [{name = "iamDyeus", email = "dyeusyt@gmail.com"}]
license = {text = "Apache License 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"watchdog >= 5.0.3",
"rich >= 13.9.2"
]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/iamDyeus/tkreload/blob/main/README.md"
"Bug Tracker" = "https://github.com/iamDyeus/tkreload/issues"
"Source code" = "https://github.com/iamDyeus/tkreload"
[project.optional-dependencies]
test = [
"pytest >= 7",
"pytest-cov"
]
[project.scripts]
tkreload = "tkreload.main:main"
[tool.setuptools.packages.find]
include = ["tkreload", "tkreload.*"]
namespaces = false
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"