forked from auth0/jupiterone-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (26 loc) · 920 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
# Copyright (c) 2020-2025 JupiterOne
from setuptools import setup, find_packages
install_reqs = ["requests", "retrying"]
setup(
name="jupiterone",
version="1.3.0",
description="A Python client for the JupiterOne API",
license="MIT License",
author="JupiterOne",
author_email="[email protected]",
maintainer="JupiterOne",
url="https://github.com/JupiterOne/jupiterone-api-client-python",
install_requires=install_reqs,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Security",
],
packages=find_packages(),
)