forked from redhat-cop/osia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·110 lines (104 loc) · 3.35 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·110 lines (104 loc) · 3.35 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2020 Osia authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
Modified by Madoshakalaka@Github (dependency links added)
"""
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="osia",
version="0.2.0",
description="OpenShift infra automation",
long_description=long_description,
long_description_content_type="text/markdown",
url="fixme",
author="Miroslav Jaros",
author_email="mirek@mijaros.cz",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
keywords="OpenShift OpenStack AWS automation", # Optional
packages=find_packages(exclude=["contrib", "docs", "tests"]),
package_data={"": ["*.jinja2"]},
entry_points={"console_scripts": ["osia = osia.cli:main_cli"]},
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"appdirs==1.4.3",
"beautifulsoup4==4.9.0",
"boto3==1.12.39",
"botocore==1.15.39",
"certifi==2020.4.5.1",
"cffi==1.14.0",
"chardet==3.0.4",
"click==7.1.1",
"coloredlogs==14.0",
"cryptography==2.9",
"decorator==4.4.2",
"docutils==0.15.2",
"dogpile.cache==0.9.0",
"dynaconf==2.2.3",
"gitdb==4.0.2",
"gitpython==3.1.0",
"humanfriendly==8.1",
"idna==2.9",
"iso8601==0.1.12",
"jinja2==2.11.1",
"jmespath==0.9.5",
"jsonpatch==1.25",
"jsonpointer==2.0",
"keystoneauth1==4.0.0",
"markupsafe==1.1.1",
"munch==2.5.0",
"netifaces==0.10.9",
"openstacksdk==0.46.0",
"os-service-types==1.7.0",
"pbr==5.4.5",
"pycparser==2.20",
"python-box==3.4.6",
"python-dateutil==2.8.1",
"python-dotenv==0.12.0",
"pyyaml==5.3.1",
"requests==2.23.0",
"requestsexceptions==1.4.0",
"s3transfer==0.3.3",
"six==1.14.0",
"smmap==3.0.1",
"soupsieve==2.0",
"stevedore==1.32.0",
"toml==0.10.0",
"urllib3==1.25.8; python_version != '3.4'",
],
extras_require={"dev": []},
dependency_links=[],
project_urls={
"Bug Reports": "https://github.com/redhat-cop/osia/issues",
"Source": "https://github.com/redhat-cop/osia",
},
)