-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·33 lines (31 loc) · 999 Bytes
/
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
from setuptools import find_packages, setup
from src.config import COMMAND_NAME
setup(
name="tip-cli",
version="1.0.0",
packages=find_packages(),
include_package_data=True,
description="CLI to access AWS services using trusted identity propagation",
author="Roberto Migli, Bruno Corijn, Alessandro Fior",
entry_points={
"console_scripts": [
f"{COMMAND_NAME}=src.main:cli",
],
},
install_requires=[
"boto3>=1.34.91, <2.0.0",
"botocore>=1.34.91, <2.0.0",
"click~=8.1.7",
"PyJWT>=2.8.0, <3.0.0",
"requests>=2.31.0, <3.0.0",
"setuptools>=49.2.1",
"chardet>=5.2.0, <6.0.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)