db1fb068b8
We have 3 services: analytics, collector, migration. Migration is frozen and going to be removed. Also migration requires Elasticsearch server for tests, thus it can't be tested on OpenStack CI. Pep8 checked on all services. Project works only on python2.7, thus gate-fuel-stats-python26 should be removed. Change-Id: Ic5b6f15903918b4b0850ce0cdc12543925de0cfa Closes-Bug: #1500073
65 lines
2.2 KiB
Python
65 lines
2.2 KiB
Python
# Copyright 2014 Mirantis, Inc.
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
|
|
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
|
|
def parse_requirements_txt():
|
|
root = os.path.dirname(os.path.abspath(__file__))
|
|
requirements = []
|
|
with open(os.path.join(root, 'requirements.txt'), 'r') as f:
|
|
for line in f.readlines():
|
|
line = line.rstrip()
|
|
if not line or line.startswith('#'):
|
|
continue
|
|
requirements.append(line)
|
|
return requirements
|
|
|
|
|
|
setup(
|
|
name='fuel-stats',
|
|
version='0.0.1',
|
|
description="Service of collecting usage statistics",
|
|
long_description="""Service of collecting usage statistics""",
|
|
license="http://www.apache.org/licenses/LICENSE-2.0",
|
|
classifiers=[
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
],
|
|
author='Mirantis Inc.',
|
|
author_email='product@mirantis.com',
|
|
url='https://mirantis.com',
|
|
keywords='fuel statistics collector mirantis',
|
|
package_dir={'collector': 'collector/collector',
|
|
'fuel_analytics': 'analytics/fuel_analytics',
|
|
'migration': 'migration/migration'},
|
|
packages=find_packages(where='collector') +
|
|
find_packages(where='analytics') +
|
|
find_packages(where='migration'),
|
|
zip_safe=False,
|
|
install_requires=parse_requirements_txt(),
|
|
include_package_data=True,
|
|
scripts=[
|
|
'analytics/manage_analytics.py',
|
|
'collector/manage_collector.py',
|
|
'migration/manage_migration.py',
|
|
]
|
|
)
|