From ce01390085c13a7a7c354fc0df6c6b9bfdf4e226 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Mon, 17 Jul 2017 18:02:14 +0200 Subject: [PATCH] autorandr is in pypi now --- README.md | 6 ++++++ setup.py | 8 ++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ad2e65..a74a5fd 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/setup.py b/setup.py index b413717..33339ce 100644 --- a/setup.py +++ b/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', -- 2.39.2