-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (40 loc) · 1.23 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
from setuptools import (
find_packages,
setup
)
__version__ = "0.2.2"
with open("mfa_tools/version.py", "w") as f:
f.write(f"VERSION = '{__version__}'")
setup(
name="aws-mfa-tools",
version=__version__,
packages=find_packages(),
author="Daniel Ferrari",
description="AWS MFA tools to be used on command line.",
license="MIT",
keywords="aws cli mfa login",
url="https://github.com/FerrariDG/aws-mfa-tools",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Build Tools",
"Typing :: Typed"
],
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"awslogin=mfa_tools.main:main"
]
},
python_requires=">=3.7"
)