-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 932 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="i3-output-selector",
packages=['i3_output_selector'],
version="0.1.2",
author="Krzysztof Warunek",
author_email="[email protected]",
description="GUI tool to change output for the current workspace in i3.",
license="MIT",
keywords="i3, workspace, selector, output",
url="https://github.com/kwarunek/i3-output-selector",
long_description=open('README.rst').read(),
install_requires=['i3-py'],
entry_points={
'console_scripts': ['i3-output-selector = i3_output_selector.__main__:main']
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Operating System :: POSIX',
'Development Status :: 3 - Alpha'
]
)