1 from setuptools import setup
5 long_description = open('README.md').read()
7 long_description = 'Automatically select a display configuration based on connected devices'
14 description='Automatically select a display configuration based on connected devices',
15 long_description=long_description,
16 long_description_content_type="text/markdown",
18 url='https://github.com/phillipberndt/autorandr',
20 author='Phillip Berndt',
21 author_email='phillip.berndt@googlemail.com',
25 # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
27 'Environment :: Console',
29 'Intended Audience :: End Users/Desktop',
31 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
33 'Programming Language :: Python :: 2',
34 'Programming Language :: Python :: 2.7',
35 'Programming Language :: Python :: 3',
36 'Programming Language :: Python :: 3.3',
37 'Programming Language :: Python :: 3.4',
38 'Programming Language :: Python :: 3.5',
43 py_modules=['autorandr'],
47 'autorandr = autorandr:exception_handled_main',