50 lines
1.3 KiB
TOML
50 lines
1.3 KiB
TOML
|
|
||
|
[project]
|
||
|
name = "safeeyes"
|
||
|
version = "2.2.2"
|
||
|
description = "Protect your eyes from eye strain using this continuous breaks reminder."
|
||
|
keywords = ["linux utility health eye-strain safe-eyes"]
|
||
|
readme = "README.md"
|
||
|
authors = [
|
||
|
{name = "Gobinath Loganathan", email = "slgobinath@gmail.com"},
|
||
|
]
|
||
|
classifiers = [
|
||
|
"Development Status :: 5 - Production/Stable",
|
||
|
"Environment :: X11 Applications :: GTK",
|
||
|
"Environment :: Other Environment",
|
||
|
"Intended Audience :: End Users/Desktop",
|
||
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||
|
"Operating System :: POSIX :: Linux",
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"Programming Language :: Python :: 3.10",
|
||
|
"Programming Language :: Python :: 3.11",
|
||
|
"Programming Language :: Python :: 3.12",
|
||
|
"Topic :: Utilities",
|
||
|
]
|
||
|
dependencies = [
|
||
|
"PyGObject",
|
||
|
"babel",
|
||
|
"psutil",
|
||
|
"packaging",
|
||
|
"python-xlib",
|
||
|
]
|
||
|
requires-python = ">=3.10"
|
||
|
|
||
|
[project.urls]
|
||
|
Homepage = "https://github.com/slgobinath/SafeEyes"
|
||
|
Downloads = "https://github.com/slgobinath/SafeEyes/archive/v2.2.2.tar.gz"
|
||
|
|
||
|
[project.scripts]
|
||
|
safeeyes = "safeeyes.__main__:main"
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
healthstats = ["croniter"]
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["setuptools"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[tool.setuptools]
|
||
|
packages=["safeeyes"]
|
||
|
include-package-data = true
|