-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (36 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Analytics Engine
"""
from setuptools import setup, find_packages
from analytics_engine.common import SERVICE_NAME
from analytics_engine.common import INSTALL_BASE_DIR
setup(name=SERVICE_NAME,
version='0.1.1',
description=
'Framework supporting automatic analysis of workloads',
author='Giuliana Carullo - Intel Research and Development Ireland Ltd',
author_email='[email protected]',
license='TBD',
url='www.intel.com',
zip_safe=False,
python_requires='>=3.5',
namespace_packages=['analytics_engine'],
packages=find_packages(),
include_package_data=True,
data_files=[
(INSTALL_BASE_DIR, ['analytics_engine.conf']),
],
entry_points={
'console_scripts': [
'{} = analytics_engine.engine:main'.format(
SERVICE_NAME)
]
})
project_contributors = [
'Giuliana Carullo', '[email protected]',
'Vincenzo Riccobene', '[email protected]',
'Kevin Mullery', '[email protected]'
'Marcin Spoczynski', '[email protected]',
'Gordon Wallace', '[email protected]'
'Eugene Ryan', '[email protected]'
]