Commit 674883d8 authored by Seblu's avatar Seblu
Browse files

Remove long description in setup.py

This avoid opening README.rst for free
parent 618fbe1f
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
from setuptools import setup, find_packages
import os

ldesc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()

setup(
    name='archversion',
    version=0,
    description='Archlinux Version Controller',
    long_description=ldesc,
    author='Sébastien Luttringer',
    license='GPL2',
    install_requires = ['xdg'],