This repository was archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·81 lines (74 loc) · 2.75 KB
/
setup.py
File metadata and controls
executable file
·81 lines (74 loc) · 2.75 KB
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
71
72
73
74
75
76
77
78
79
80
81
#
# paws -- provision automated windows and services
# Copyright (C) 2016 Red Hat, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
Python build distribution for PAWS
"""
from os.path import exists
from setuptools import setup
VERSION = "paws/version.txt"
def get_version():
"""Get version and release"""
# version.txt file is copied during build process
if exists(VERSION):
with open(VERSION, "r") as version_file:
version = version_file.read()
return version
else:
return "dev"
setup(
name='paws-cli',
version=get_version(),
description='A tool used to provision Windows systems and configure '
'Windows services.',
long_description='Paws is a Linux based tool to provision Windows systems '
'and configure Windows services. Providing a simple '
'way to test hybrid environments (Linux and Windows).',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Quality Assurance'
],
keywords='Provision Automation Windows Quality Assurance Tests Hybrid',
url='https://rhpit.github.io/paws/',
author='Eduardo Cerqueira,Ryan Williams',
author_email='eduardomcerqueira@gmail.com,rwilliams5262@gmail.com',
maintainer='Eduardo Cerqueira,Ryan Williams',
maintainer_email='eduardomcerqueira@gmail.com,rwilliams5262@gmail.com',
platforms='RHEL >= 7.2 Fedora >= 24 CentOS >= 7.2',
license='GPL',
include_package_data=True,
zip_safe=False,
packages=[
'paws',
'paws.lib',
'paws.providers',
'paws.tasks'
],
install_requires=['paramiko==2.2.1',
'pywinrm',
'click',
'click_spinner',
'apache-libcloud',
'ansible'],
extras_require={
'libvirt': ['libvirt-python']
},
entry_points={'console_scripts': ['paws=paws.cli:paws']}
)