-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (26 loc) · 1.2 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
from setuptools import setup
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as fr:
requirements = fr.read()
setup(
name='sway-smart-workspace',
version='0.1.4',
url='https://github.com/asger-weirsoee/sway-smart-workspaces',
license='GNU Lesser General Public License v3 or later (LGPLv3+)',
install_requires=requirements.split('\n'),
entry_points={"console_scripts": ["sway-smart-workspace=smart_workspace:main"]},
scripts=["sway_smart_workspace/smart_workspace.py"],
long_description=long_description,
long_description_content_type='text/markdown',
author='Asger Geel Weirsøe',
author_email='[email protected]',
description='Simple program that looks through the sway config and finds the bound workspaces for each output, and then opening that workspace on the output, that the mouse is currently on.',
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment :: Window Managers",
],
)