1
0
Fork 0
mirror of https://github.com/seqizz/autorandr.git synced 2024-09-07 10:30:28 +02:00
autorandr/setup.py
Phillip Berndt 9e95d5cc2c Release 1.11
This updates the readme with changes since 1.10.1 and releases 1.11.
This version primarily brings small bugfixes, only change warranting
minor version bump is that batch mode now assigns user groups.

Fixes #227.
2021-03-23 16:44:46 +01:00

50 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.11.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',
],
},
)