Blame setup.py

Packit 01965a
#! /usr/bin/env python
Packit 01965a
'''
Packit 01965a
This file is part of ConfigShell.
Packit 01965a
Copyright (c) 2011-2013 by Datera, Inc
Packit 01965a
Packit 01965a
Licensed under the Apache License, Version 2.0 (the "License"); you may
Packit 01965a
not use this file except in compliance with the License. You may obtain
Packit 01965a
a copy of the License at
Packit 01965a
Packit 01965a
    http://www.apache.org/licenses/LICENSE-2.0
Packit 01965a
Packit 01965a
Unless required by applicable law or agreed to in writing, software
Packit 01965a
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
Packit 01965a
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
Packit 01965a
License for the specific language governing permissions and limitations
Packit 01965a
under the License.
Packit 01965a
'''
Packit 01965a
Packit 01965a
from setuptools import setup
Packit 01965a
Packit 01965a
setup(
Packit 01965a
    name = 'nvmetcli',
Packit 01965a
    version = 0.6,
Packit 01965a
    description = 'NVMe target configuration tool',
Packit 01965a
    license = 'Apache 2.0',
Packit 01965a
    maintainer = 'Christoph Hellwig',
Packit 01965a
    maintainer_email = 'hch@lst.de',
Packit 01965a
    test_suite='nose2.collector.collector',
Packit 01965a
    packages = ['nvmet'],
Packit 01965a
    scripts=['nvmetcli']
Packit 01965a
    )