Skip to content
setup.py 1.32 KiB
Newer Older
#!/usr/bin/env python

# This file is part of CloudControl.
#
# CloudControl is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# CloudControl is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with CloudControl.  If not, see <http://www.gnu.org/licenses/>.


Antoine Millet's avatar
Antoine Millet committed
from setuptools import setup
import os

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

Antoine Millet's avatar
Antoine Millet committed
# Retrieval of version:
from sjrpc import __version__

Antoine Millet's avatar
Antoine Millet committed
setup(
    name='sjrpc',
Antoine Millet's avatar
Antoine Millet committed
    version=__version__,
Antoine Millet's avatar
Antoine Millet committed
    description='Smartjog RPC',
    long_description=ldesc,
    author='Antoine Millet',
    author_email='antoine.millet@smartjog.com',
    license='GPL2',
    packages=['sjrpc', 'sjrpc.server', 'sjrpc.core', 'sjrpc.core.protocols',
Antoine Millet's avatar
Antoine Millet committed
              'sjrpc.utils'],
    classifiers=[
        'Intended Audience :: Developers',
        'Operating System :: Unix',
        'Programming Language :: Python',
    ],
)