]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - setup.py
Don't fail hard in get_fb_dimensions if a mode isn't WWWxHHH
[deb_pkgs/autorandr.git] / setup.py
1 from setuptools import setup
2
3
4 try:
5     long_description = open('README.md').read()
6 except:
7     long_description = 'Automatically select a display configuration based on connected devices'
8
9 setup(
10     name='autorandr',
11
12     version='1.8.1.post1',
13
14     description='Automatically select a display configuration based on connected devices',
15     long_description=long_description,
16     long_description_content_type="text/markdown",
17
18     url='https://github.com/phillipberndt/autorandr',
19
20     author='Phillip Berndt',
21     author_email='phillip.berndt@googlemail.com',
22
23     license='GPLv3',
24
25     # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
26     classifiers=[
27         'Environment :: Console',
28
29         'Intended Audience :: End Users/Desktop',
30
31         'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
32
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',
39     ],
40
41     keywords='xrandr',
42
43     py_modules=['autorandr'],
44
45     entry_points={
46         'console_scripts': [
47             'autorandr = autorandr:exception_handled_main',
48         ],
49     },
50 )