-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 970 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 970 Bytes
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
# SPDX-FileCopyrightText: oVirt Developers <devel@ovirt.org>
# SPDX-License-Identifier: GPL-2.0-or-later
# flake8: noqa
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="userstorage",
version="0.5.3",
author="oVirt Developers",
author_email="devel@ovirt.org",
license="GPL-2.0-or-later",
description="Create storage for tests",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/oVirt/userstorage",
packages=["userstorage"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
],
entry_points = {
'console_scripts': ['userstorage=userstorage.__main__:main'],
}
)