-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (38 loc) · 1.32 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools
import io
import os
package_root = os.path.abspath(os.path.dirname(__file__))
readme_filename = os.path.join(package_root, 'README.md')
with io.open(readme_filename, encoding='utf-8') as readme_file:
readme = readme_file.read()
setuptools.setup(
name="cloud_auth_tpm",
version="0.6.4",
author="Sal Rashid",
author_email="salrashid123@gmail.com",
description="Python TPM based Credentials for Cloud Providers",
long_description=readme,
long_description_content_type='text/markdown',
url="https://github.com/salrashid123/cloud_auth_tpm",
install_requires=[
'tpm2_pytss>=2.3.0',
'cryptography',
'requests'
],
extras_require={
'gcp': ['google-auth>=2.34.0'],
'aws': ['boto3', 'botocore'],
'azure': ['azure-identity', 'azure-core'],
},
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
"Programming Language :: Python",
"Programming Language :: Python :: 3.0",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)