-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.05 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="cloudformation_stack_ls",
version="0.3",
author="Michael De La Rue",
author_email="michael-paddle@fake.github.com",
description="List resources in a cloudformation stack",
long_description=long_description,
url="https://github.com/michael-paddle/cloudformation_stack_ls",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts": [
"cloudformation-stack-ls = cloudformation_stack_ls.shell_start:main",
]
},
# python gpgme (the official library distributed by the GPG team)
# has to be installed by the operating system so we don't include
# it here so that PIP does not attempt to install it!
install_requires=["boto3"],
)