-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
70 lines (61 loc) · 2.6 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
62
63
64
65
66
67
68
69
70
#
# MIT License
#
# (C) Copyright 2019-2022 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# setuptools-based installation module for sat
from os import path
from setuptools import setup, find_packages
from tools.changelog import get_latest_version_from_file
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
install_requires = []
for line in f.readlines():
commentless_line = line.split('#', 1)[0].strip()
if commentless_line:
install_requires.append(commentless_line)
version = get_latest_version_from_file('CHANGELOG.md')
if version is None:
version = 'VERSION_MISSING'
setup(
name='sat',
version=version,
description="System Admin Toolkit",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Cray-HPE/sat',
author='Hewlett Packard Enterprise Development LP',
license='MIT',
packages=find_packages(exclude=['tests', 'tests.*', 'tools', 'tools.*']),
python_requires='>=3.8, <4',
# Top-level dependencies are parsed from requirements.txt
install_requires=install_requires,
# This makes setuptools generate our executable script automatically for us.
entry_points={
'console_scripts': [
'sat=sat.main:main'
]
},
# Include the schema file for the input to `sat bootprep` in the package
package_data={'sat': ['data/schema/bootprep_schema.yaml']}
)