-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
39 lines (34 loc) · 1.05 KB
/
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
34
35
36
37
38
39
"""
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(),
install_requires=[
"flask>=1.1",
"requests>=2.22,<3",
"pycryptodome>=3.9,<4",
"cryptography>=2.8"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)
main()