-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
50 lines (48 loc) · 1.54 KB
/
setup.py
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
from pathlib import Path
import setuptools
setup_dir = Path(__file__).resolve().parent
setuptools.setup(
name='waypaper',
author='Roman Anufriev',
author_email='[email protected]',
url='https://github.com/anufrievroman/waypaper',
description='GUI wallpaper setter for Wayland',
long_description=Path(setup_dir, 'README.md').open().read(),
long_description_content_type='text/markdown',
license='GPL',
entry_points={
"gui_scripts": [
"waypaper = waypaper.__main__:run"
]
},
install_requires=["PyGObject", "importlib_metadata", "platformdirs", "Pillow", "imageio", "imageio-ffmpeg", "screeninfo"],
version='2.4',
python_requires='>3.10',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
],
packages=["waypaper"],
package_data={
'waypaper': ['data/waypaper.desktop', 'data/waypaper.svg']
},
include_package_data=True,
data_files=[
('share/icons/hicolor/scalable/apps',
['data/waypaper.svg']
),
('share/applications',
['data/waypaper.desktop']
),
('share/man/man1',
['data/waypaper.1.gz']
),
],
)