-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.08 KB
/
setup.py
File metadata and controls
32 lines (28 loc) · 1.08 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
import setuptools
# reading long description from file
with open('DESCRIPTION.txt') as file:
long_description = file.read()
# external packages requirements
REQUIREMENTS = [
'PyJWT>=2.6.0,<3.0.0',
'requests>=2.32.4,<3.0.0',
'cryptography>=41.0.6'
]
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
# calling the setup function
setuptools.setup(name='zi_api_auth_client',
version='2.0.3',
description='A library that supports username-password and PKI authentication methods for enterprise-api',
long_description=long_description,
url='https://github.com/Zoominfo/api-auth-python-client',
author='Krishna Teja Dinavahi',
author_email='krishnateja.dinavahi@zoominfo.com',
license='MIT',
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='ZoomInfo enterprise-api pki-auth',
packages=setuptools.find_packages()
)