Skip to content

Commit 6910880

Browse files
committed
Initial project setup
1 parent 20ae7ad commit 6910880

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

setup.cfg

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[metadata]
2+
name = stackhpc-openstack-tests
3+
version = 0.1.0
4+
summary = Automated testing for StackHPC OpenStack
5+
description-file = README.md
6+
author = Mark Goddard
7+
author-email = [email protected]
8+
url = https://github.com/stackhpc/stackhpc-openstack-tests
9+
python-requires = >=3.6
10+
classifier =
11+
Environment :: OpenStack
12+
Intended Audience :: Information Technology
13+
Intended Audience :: System Administrators
14+
License :: OSI Approved :: Apache Software License
15+
Operating System :: POSIX :: Linux
16+
Programming Language :: Python
17+
Programming Language :: Python :: 3
18+
Programming Language :: Python :: 3.7
19+
Programming Language :: Python :: 3.8
20+
Programming Language :: Python :: 3.9
21+
Programming Language :: Python :: 3.10
22+
Programming Language :: Python :: 3.11
23+
Programming Language :: Python :: 3.12
24+
Programming Language :: Python :: 3 :: Only
25+
Programming Language :: Python :: Implementation :: CPython
26+
27+
[files]
28+
packages =
29+
stackhpc_openstack_tests

setup.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License");
2+
# you may not use this file except in compliance with the License.
3+
# You may obtain a copy of the License at
4+
#
5+
# http://www.apache.org/licenses/LICENSE-2.0
6+
#
7+
# Unless required by applicable law or agreed to in writing, software
8+
# distributed under the License is distributed on an "AS IS" BASIS,
9+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
10+
# implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
14+
import setuptools
15+
16+
setuptools.setup()
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License"); you may
2+
# not use this file except in compliance with the License. You may obtain
3+
# a copy of the License at
4+
#
5+
# http://www.apache.org/licenses/LICENSE-2.0
6+
#
7+
# Unless required by applicable law or agreed to in writing, software
8+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10+
# License for the specific language governing permissions and limitations
11+
# under the License.

0 commit comments

Comments
 (0)