-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (24 loc) · 1.05 KB
/
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
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', 'requests==2.31.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.1',
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='[email protected]',
license='MIT',
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='ZoomInfo enterprise-api pki-auth',
packages=setuptools.find_packages()
)