forked from aws/aws-parallelcluster-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (53 loc) · 2.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 2013-2015 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "LICENSE.txt" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and
# limitations under the License.
import os
from setuptools import find_packages, setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
console_scripts = [
"slurm_resume = slurm_plugin.resume:main",
"slurm_suspend = slurm_plugin.suspend:main",
"slurm_fleet_status_manager = slurm_plugin.fleet_status_manager:main",
"clustermgtd = slurm_plugin.clustermgtd:main",
"computemgtd = slurm_plugin.computemgtd:main",
]
version = "3.2.0b2"
requires = ["boto3>=1.7.55", "retrying>=1.3.3"]
setup(
name="aws-parallelcluster-node",
version=version,
author="Amazon Web Services",
description="aws-parallelcluster-node provides the scripts for an AWS ParallelCluster node.",
url="https://github.com/aws/aws-parallelcluster-node",
license="Apache License 2.0",
packages=find_packages("src", exclude=["tests"]),
package_dir={"": "src"},
python_requires=">=3.7",
install_requires=requires,
entry_points=dict(console_scripts=console_scripts),
zip_safe=False,
package_data={"slurm_plugin": ["logging/*.conf"]},
long_description=(
"aws-parallelcluster-node is the python package installed on the Amazon EC2 instances launched "
"as part of AWS ParallelCluster."
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
],
)