]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - setup.py
Fix placement of systemd service file
[deb_pkgs/autorandr.git] / setup.py
1 from setuptools import setup
2
3
4 try:
5     long_description = open('README.rst').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.5-1',
13
14     description='Automatically select a display configuration based on connected devices',
15     long_description=long_description,
16
17     url='https://github.com/phillipberndt/autorandr',
18
19     author='Phillip Berndt',
20     author_email='phillip.berndt@googlemail.com',
21
22     license='GPLv3',
23
24     # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
25     classifiers=[
26         'Environment :: Console',
27
28         'Intended Audience :: End Users/Desktop',
29
30         'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
31
32         'Programming Language :: Python :: 2',
33         'Programming Language :: Python :: 2.7',
34         'Programming Language :: Python :: 3',
35         'Programming Language :: Python :: 3.3',
36         'Programming Language :: Python :: 3.4',
37         'Programming Language :: Python :: 3.5',
38     ],
39
40     keywords='xrandr',
41
42     py_modules=['autorandr'],
43
44     entry_points={
45         'console_scripts': [
46             'autorandr = autorandr:exception_handled_main',
47         ],
48     },
49 )