Skip to content
setup.py 845 B
Newer Older
Seblu's avatar
Seblu committed
from setuptools import setup
import os
import sys
import installsystems

# Retrieval of version

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

setup(
    name=installsystems.canonical_name,
    version=installsystems.version,
    description='InstallSystems',
    long_description=ldesc,
    author='Sebastien Luttringer',
    author_email='sebastien.luttringer@smartjog.com',
Seblu's avatar
Seblu committed
    license='GPL2',
    packages=[ 'installsystems', 'installsystems.progressbar' ],
Seblu's avatar
Seblu committed
    scripts=[ 'bin/is' ],
Seblu's avatar
Seblu committed
    data_files=(
        ('/etc/installsystems/', ('samples/repository.conf',
                                  'samples/installsystems.conf')),
        ('/etc/bash_completion.d/', ('completion/bash/is',)),
Seblu's avatar
Seblu committed
        ),
Seblu's avatar
Seblu committed
    classifiers=[
        'Operating System :: Unix',
        'Programming Language :: Python',
        ],
    )