mirror of
https://github.com/phillipberndt/autorandr
synced 2025-01-05 14:20:53 +00:00
76a229a5e7
Changes since 1.9: * *2020-04-23* Fix hook script execution order to match description from readme * *2020-04-11* Handle negative gamma values (fixes #188) * *2020-04-11* Sort approximate matches in detected profiles by quality of match * *2020-01-31* Handle non-ASCII environment variables (fixes #180) * *2019-12-31* Fix output positioning if the top-left output is not the first * *2019-12-31* Accept negative gamma values (and interpret them as 0) * *2019-12-31* Prefer the X11 launcher over systemd/udev configuration Fixes #191
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
from setuptools import setup
|
|
|
|
|
|
try:
|
|
long_description = open('README.md').read()
|
|
except:
|
|
long_description = 'Automatically select a display configuration based on connected devices'
|
|
|
|
setup(
|
|
name='autorandr',
|
|
|
|
version='1.10.post1',
|
|
|
|
description='Automatically select a display configuration based on connected devices',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
|
|
url='https://github.com/phillipberndt/autorandr',
|
|
|
|
author='Phillip Berndt',
|
|
author_email='phillip.berndt@googlemail.com',
|
|
|
|
license='GPLv3',
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
classifiers=[
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
|
|
keywords='xrandr',
|
|
|
|
py_modules=['autorandr'],
|
|
|
|
entry_points={
|
|
'console_scripts': [
|
|
'autorandr = autorandr:exception_handled_main',
|
|
],
|
|
},
|
|
)
|