-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
58 lines (56 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="yawsso",
# version="MOVE TO setup.cfg",
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"],
},
project_urls={
"Bug Tracker": "https://github.com/victorskl/yawsso/issues",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
extras_require={
"all": [
"pyperclip",
],
"test": [
"pytest",
"pytest-cov",
"flake8",
"mockito",
"cli-test-helpers",
"coveralls",
"pyperclip",
],
"dev": [
"twine",
"setuptools",
"wheel",
"build",
"aws-cdk-lib",
"constructs",
"tox",
"nose2",
"pre-commit",
"detect-secrets",
"ggshield",
],
},
python_requires=">=3.7",
)