forked from whamcloud/integrated-manager-for-lustre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (30 loc) · 1.1 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
# -*- coding: utf-8 -*-
#!/usr/bin/env python
# Copyright (c) 2019 DDN. All rights reserved.
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file.
from setuptools import setup, find_packages
excludes = []
setup(
name="iml-manager",
version="5.0.0",
author="whamCloud",
author_email="[email protected]",
url="https://pypi.python.org/pypi/iml-manager",
license="MIT",
description="The Integrated Manager for Lustre software Monitoring and Administration Interface",
long_description=open("README.txt").read(),
packages=find_packages(exclude=excludes) + [""],
package_data={
"chroma_core": ["fixtures/default_power_types.json"],
"polymorphic": ["COPYING"],
"tests": ["integration/run_tests", "integration/*/*.json", "sample_data/*", "integration/core/clear_ha_el?.sh"],
},
scripts=["chroma-host-discover"],
entry_points={
"console_scripts": [
"chroma-config = chroma_core.lib.service_config:chroma_config",
"chroma = chroma_cli.main:standard_cli",
]
},
)