-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.45 KB
/
setup.py
File metadata and controls
45 lines (39 loc) · 1.45 KB
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
40
41
42
43
44
45
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from zscaler_python_sdk import __version__
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
setup(
name='zscaler_python_sdk',
python_requires='>=3.8',
version=__version__,
description='Python Interface to Zscaler API',
long_description=long_description,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Natural Language :: English',
],
keywords='zscaler python',
author='Eddie Parra',
author_email='NO EMAIL',
maintainer='Eddie Parra',
maintainer_email='NO EMAIL',
url='https://github.com/eparra/zscaler-python-sdk/',
license='MIT',
packages=find_packages(),
install_requires=['requests>=2.32.0'],
zip_safe=False
)