-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (39 loc) · 1.19 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.md") as readme_file:
readme = readme_file.read()
install_requirements = [
"sceptre>=2.0"
]
setup(
name='sceptre-identity-resolver',
version="1.0.0",
description="A set of Sceptre resolvers to help identify stacks",
py_modules=['stack_name','stack_env'],
long_description=readme,
long_description_content_type="text/markdown",
author="zaro0508",
author_email="[email protected]",
license='Apache2',
url="https://github.com/cloudreach/sceptre",
entry_points={
'sceptre.resolvers': [
'stack_name = stack_name:StackName',
'stack_env = stack_env:StackEnvironment',
],
},
keywords="sceptre",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Environment :: Console",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7"
],
install_requires=install_requirements,
include_package_data=True,
zip_safe=False,
)