-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (47 loc) · 1.74 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
49
50
51
52
53
54
[build-system]
requires = ['setuptools>=61.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'kvhot'
version = 'v2024.09.12'
description = 'Automatically restarts the Kivy application whenever files within the project directory change.'
readme = 'README.md'
authors = [{ name = 'Kulothungan U.G', email = 'kulothunganug@gmail.com' }, { name = 'Alexander Hellier', email = 'alex.hellier@gmail.com' }]
license = { file = 'LICENSE' }
keywords = ['kivy', 'kivymd', 'hotrestart', 'gui']
dependencies = [
'watchfiles>=0.18.1',
]
requires-python = '>=3.8'
classifiers = [
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
]
[project.optional-dependencies]
dev = ['black', 'isort', 'flake8', 'pip-tools']
[project.urls]
Homepage = 'https://github.com/kulothunganug/kvhot'
Issues = 'https://github.com/kulothunganug/issues'
[project.scripts]
kvhot = 'kvhot.__main__:main'
[tool.black]
line-length = 80
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
[tool.isort]
line_length = 80
known_third_party = ['watchfiles']