forked from infokiller/i3-workspace-groups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.42 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
import os
import setuptools
README_PATH = os.path.join(
os.path.abspath(os.path.dirname(__file__)), 'README.md')
with open(README_PATH) as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name='i3-workspace-groups',
version='0.4.3-alpha',
description='Manage i3wm workspaces in groups you control',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url='https://github.com/infokiller/i3-workspace-groups',
author='infokiller',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='i3 i3wm extensions add-ons',
packages=setuptools.find_packages(),
install_requires=['i3ipc >= 2, < 3'],
scripts=[
'scripts/i3-assign-workspace-to-group',
'scripts/i3-autoname-workspaces',
'scripts/i3-focus-on-workspace',
'scripts/i3-move-to-workspace',
'scripts/i3-rename-workspace',
'scripts/i3-select-workspace-group',
'scripts/i3-switch-active-workspace-group',
'scripts/i3-workspace-groups',
],
)