]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - setup.py
0b29943775e50610260e8fca2739ef26bccb79f7
[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.13.3.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.6',
39         'Programming Language :: Python :: 3.7',
40         'Programming Language :: Python :: 3.8',
41         'Programming Language :: Python :: 3.9',
42         'Programming Language :: Python :: 3.10',
43     ],
44
45     keywords='xrandr',
46
47     py_modules=['autorandr'],
48
49     entry_points={
50         'console_scripts': [
51             'autorandr = autorandr:exception_handled_main',
52         ],
53     },
54 )