-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·47 lines (43 loc) · 1.83 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
#!/usr/bin/python3
# vim: set fileencoding=utf-8 :
# vim: set et ts=4 sw=4:
'''
IBus Theme Tools
Author: Hollow Man <[email protected]>
Copyright © 2021 Hollow Man(@HollowMan6). All rights reserved.
This document is free software; you can redistribute it and/or modify it under the terms of the GNU General
Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option)
any later version.
'''
from setuptools import setup
# read the contents of README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='ibus-theme-tools',
version='4.2.0',
description='Generate the IBus GTK or GNOME Shell theme from existing themes.',
url='https://github.com/openSUSE/IBus-Theme-Tools',
author='Hollow Man (Domain Address)',
author_email='[email protected]',
license='GPL-3.0-or-later',
install_requires=['tinycss2'],
packages=['ibus_theme_tools'],
package_data={'ibus_theme_tools': ['locale/**/LC_MESSAGES/*.mo', 'merge-gresource.sh']},
entry_points={'console_scripts': [
'ibus-theme-tools=ibus_theme_tools.ibus_theme_tools:main']},
long_description=long_description,
project_urls={
"Bug Tracker": "https://github.com/openSUSE/IBus-Theme-Tools/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix",
"Topic :: Desktop Environment :: Gnome",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English"
],
long_description_content_type='text/markdown'
)