2016-11-30 01:37:05 +00:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
2017-07-17 16:02:14 +00:00
|
|
|
try:
|
2018-03-07 06:42:23 +00:00
|
|
|
long_description = open('README.rst').read()
|
2017-07-17 16:02:14 +00:00
|
|
|
except:
|
|
|
|
long_description = 'Automatically select a display configuration based on connected devices'
|
2016-11-30 01:37:05 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='autorandr',
|
|
|
|
|
2018-09-25 17:20:42 +00:00
|
|
|
version='1.7-1',
|
2016-11-30 01:37:05 +00:00
|
|
|
|
|
|
|
description='Automatically select a display configuration based on connected devices',
|
|
|
|
long_description=long_description,
|
|
|
|
|
|
|
|
url='https://github.com/phillipberndt/autorandr',
|
|
|
|
|
|
|
|
author='Phillip Berndt',
|
2017-07-17 16:02:14 +00:00
|
|
|
author_email='phillip.berndt@googlemail.com',
|
2016-11-30 01:37:05 +00:00
|
|
|
|
|
|
|
license='GPLv3',
|
|
|
|
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
classifiers=[
|
|
|
|
'Environment :: Console',
|
|
|
|
|
|
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
],
|
|
|
|
|
|
|
|
keywords='xrandr',
|
|
|
|
|
|
|
|
py_modules=['autorandr'],
|
|
|
|
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'autorandr = autorandr:exception_handled_main',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
)
|