forked from LinkedInAttic/naarad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (20 loc) · 856 Bytes
/
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
#! /usr/bin/python
from setuptools import setup, find_packages
with open('VERSION') as f:
naarad_version = f.read().strip()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name="naarad",
description='Naarad is a Performance Analysis tool',
url='https://github.com/linkedin/naarad',
author='Naarad Developers',
author_email='[email protected]',
version=naarad_version,
packages=['naarad', 'naarad.metrics', 'naarad.graphing', 'naarad.reporting', 'naarad.run_steps', 'naarad.resources'],
scripts = ['bin/naarad', 'bin/PrintGCStats', 'bin/naarad_metric_collector.sh'],
package_dir={ '' : 'src'},
package_data={ '' : ['src/naarad/resources/*.html']},
include_package_data=True,
install_requires=required,
license='Apache 2.0',
)