Skip to content
setup.py 598 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',
    license='GPL2', 
Seblu's avatar
Seblu committed
    packages=[ 'installsystems' ],
Seblu's avatar
Seblu committed
    scripts=[ 'bin/is' ],
Seblu's avatar
Seblu committed
    classifiers=[
        'Operating System :: Unix',
        'Programming Language :: Python',
        ],
    )