forked from auth0/jupiterone-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 940 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 940 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
# Copyright (c) 2020 Auth0
from setuptools import setup, find_packages
install_reqs = [
'requests',
'retrying'
]
setup(name='jupiterone',
version='0.2.0',
description='A Python client for the JupiterOne API',
license='MIT License',
author='George Vauter',
author_email='george.vauter@auth0.com',
maintainer='Auth0',
url='https://github.com/auth0/jupiterone-python-sdk',
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()
)