intel-nfv-ci-tests/setup.py

69 lines
2.0 KiB
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2015 Intel Corporation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')
requirements = [
# TODO(requirements): put package requirements here
]
test_requirements = [
# TODO(test-requirements): put package test requirements here
]
setup(
name='intel_nfv_ci_tests',
version='0.1.0',
description="Repository containing tests for Intel NFV 3rd party CI",
long_description=readme + '\n\n' + history,
author="Intel Corporation",
author_email='waldemar.znoinski@intel.com',
url='https://github.com/stackforge/intel-nfv-ci-tests',
packages=[
'intel_nfv_ci_tests',
],
package_dir={'intel_nfv_ci_tests':
'intel_nfv_ci_tests'},
include_package_data=True,
install_requires=requirements,
license="Apache",
zip_safe=False,
keywords='intel_nfv_ci_tests',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
],
test_suite='tests',
tests_require=test_requirements
)