|  | 
| 1 | 1 | # Copyright (c) 2020-2025 JupiterOne | 
| 2 | 2 | from setuptools import setup, find_packages | 
| 3 | 3 | 
 | 
| 4 |  | -install_reqs = [ | 
| 5 |  | -    'requests', | 
| 6 |  | -    'retrying' | 
| 7 |  | -] | 
|  | 4 | +install_reqs = ["requests", "retrying"] | 
| 8 | 5 | 
 | 
| 9 |  | -setup(name='jupiterone', | 
| 10 |  | -      version='1.0.0', | 
| 11 |  | -      description='A Python client for the JupiterOne API', | 
| 12 |  | -      license='MIT License', | 
| 13 |  | -      author='JupiterOne', | 
| 14 |  | - | 
| 15 |  | -      maintainer='JupiterOne', | 
| 16 |  | -      url='https://github.com/JupiterOne/jupiterone-api-client-python', | 
| 17 |  | -      install_requires=install_reqs, | 
| 18 |  | -      classifiers=[ | 
| 19 |  | -          'Development Status :: 4 - Beta', | 
| 20 |  | -          'Intended Audience :: Developers', | 
| 21 |  | -          'Intended Audience :: Information Technology', | 
| 22 |  | -          'Intended Audience :: System Administrators', | 
| 23 |  | -          'License :: OSI Approved :: MIT License', | 
| 24 |  | -          'Natural Language :: English', | 
| 25 |  | -          'Operating System :: POSIX :: Linux', | 
| 26 |  | -          'Programming Language :: Python', | 
| 27 |  | -          'Topic :: Security', | 
| 28 |  | -      ], | 
| 29 |  | -      packages=find_packages() | 
| 30 |  | -      ) | 
|  | 6 | +setup( | 
|  | 7 | +    name="jupiterone", | 
|  | 8 | +    version="1.0.1", | 
|  | 9 | +    description="A Python client for the JupiterOne API", | 
|  | 10 | +    license="MIT License", | 
|  | 11 | +    author="JupiterOne", | 
|  | 12 | + | 
|  | 13 | +    maintainer="JupiterOne", | 
|  | 14 | +    url="https://github.com/JupiterOne/jupiterone-api-client-python", | 
|  | 15 | +    install_requires=install_reqs, | 
|  | 16 | +    classifiers=[ | 
|  | 17 | +        "Development Status :: 4 - Beta", | 
|  | 18 | +        "Intended Audience :: Developers", | 
|  | 19 | +        "Intended Audience :: Information Technology", | 
|  | 20 | +        "Intended Audience :: System Administrators", | 
|  | 21 | +        "License :: OSI Approved :: MIT License", | 
|  | 22 | +        "Natural Language :: English", | 
|  | 23 | +        "Operating System :: POSIX :: Linux", | 
|  | 24 | +        "Programming Language :: Python", | 
|  | 25 | +        "Topic :: Security", | 
|  | 26 | +    ], | 
|  | 27 | +    packages=find_packages(), | 
|  | 28 | +) | 
0 commit comments