forked from victorskl/yawsso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.11 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
46
from setuptools import setup
from yawsso import __version__
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="yawsso",
version=__version__,
description="Yet Another AWS SSO - sync up AWS CLI v2 SSO login session to legacy CLI v1 credentials",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/victorskl/yawsso",
author="Victor San Kho Lin",
author_email="[email protected]",
license="MIT",
packages=["yawsso"],
zip_safe=False,
entry_points={
"console_scripts": ["yawsso=yawsso.cli:main"],
},
extras_require={
"all": [
"pyperclip",
],
"test": [
"pytest",
"pytest-cov",
"flake8",
"mockito",
"cli-test-helpers",
"coveralls",
"pyperclip==1.7.0",
],
"dev": [
"twine",
"setuptools",
"wheel",
"aws-cdk.aws-ec2",
"tox",
"nose2",
],
},
python_requires=">=3.6",
)