autorandr is in pypi now
This commit is contained in:
parent
0fe7af85e3
commit
ce01390085
|
@ -74,6 +74,12 @@ If you prefer `pip` over your package manager, you can install autorandr with:
|
|||
|
||||
sudo pip install "git+http://github.com/phillipberndt/autorandr#egg=autorandr"
|
||||
|
||||
or simply
|
||||
|
||||
sudo pip install autorandr
|
||||
|
||||
if you prefer to use a stable version.
|
||||
|
||||
Automatically generated packages versions are available from the
|
||||
[openSUSE build service](https://build.opensuse.org/package/show/home:phillipberndt/autorandr).
|
||||
|
||||
|
|
8
setup.py
8
setup.py
|
@ -1,12 +1,15 @@
|
|||
from setuptools import setup
|
||||
|
||||
|
||||
long_description = open('README.md').read()
|
||||
try:
|
||||
long_description = open('README.md').read()
|
||||
except:
|
||||
long_description = 'Automatically select a display configuration based on connected devices'
|
||||
|
||||
setup(
|
||||
name='autorandr',
|
||||
|
||||
#version='', # FIXME
|
||||
version='1.1-4',
|
||||
|
||||
description='Automatically select a display configuration based on connected devices',
|
||||
long_description=long_description,
|
||||
|
@ -14,6 +17,7 @@ setup(
|
|||
url='https://github.com/phillipberndt/autorandr',
|
||||
|
||||
author='Phillip Berndt',
|
||||
author_email='phillip.berndt@googlemail.com',
|
||||
|
||||
license='GPLv3',
|
||||
|
||||
|
|
Loading…
Reference in New Issue