-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.45 KB
/
setup.py
File metadata and controls
41 lines (40 loc) · 1.45 KB
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name="hyprsettings",
version="0.2.1",
description="GTK4/Libadwaita settings manager for Hyprland",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Nir Rudov",
author_email="aar58384@gmail.com",
url="https://github.com/binarylinuxx/hyprsettings",
license="GPL-3.0-or-later",
py_modules=["hyprsettings"], # Use the .py file as a module
entry_points={
"console_scripts": [
"hyprsettings=hyprsettings:main",
],
},
install_requires=[
"PyGObject>=3.42.0",
],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Desktop Environment",
"Topic :: System :: Systems Administration",
],
keywords="hyprland wayland settings gtk4 libadwaita",
)