]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/blob - setup.py
pip installable!
[deb_pkgs/autorandr.git] / setup.py
1 from setuptools import setup
2
3
4 long_description = open('README.md').read()
5
6 setup(
7     name='autorandr',
8
9     #version='', # FIXME
10
11     description='Automatically select a display configuration based on connected devices',
12     long_description=long_description,
13
14     url='https://github.com/phillipberndt/autorandr',
15
16     author='Phillip Berndt',
17
18     license='GPLv3',
19
20     # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
21     classifiers=[
22         'Environment :: Console',
23
24         'Intended Audience :: End Users/Desktop',
25
26         'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
27
28         'Programming Language :: Python :: 2',
29         'Programming Language :: Python :: 2.7',
30         'Programming Language :: Python :: 3',
31         'Programming Language :: Python :: 3.3',
32         'Programming Language :: Python :: 3.4',
33         'Programming Language :: Python :: 3.5',
34     ],
35
36     keywords='xrandr',
37
38     py_modules=['autorandr'],
39
40     entry_points={
41         'console_scripts': [
42             'autorandr = autorandr:exception_handled_main',
43         ],
44     },
45 )