forked from IBM/qpylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 937 Bytes
/
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
"""
Copyright 2019 IBM Corporation All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
"""
import setuptools
def main():
with open("qpylib/version.py", "r") as version_file:
line = version_file.read().rstrip()
_, _, version = line.replace("'", '').split()
with open("README.md", "r") as readme:
long_desc = readme.read()
setuptools.setup(
name = "qpylib",
author = "IBM",
author_email = "<>",
version = version,
description = "QRadar app utility library",
long_description = long_desc,
long_description_content_type = "text/markdown",
license = "SPDX-License-Identifier: Apache-2.0",
url = "https://github.com/ibm/qpylib",
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)
main()