forked from monetate/ectou-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (32 loc) · 876 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name="ectou-metadata",
version="1.0.2",
description="Yet another EC2 instance metadata mocking service.",
url="https://github.com/monetate/ectou-metadata",
author='Monetate',
author_email='jjpersch@monetate.com',
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
keywords="aws instance metadata",
packages=[
'ectou_metadata',
],
install_requires=[
"boto3",
"bottle",
],
entry_points={
'console_scripts': [
'ectou_metadata = ectou_metadata.service:main',
],
},
test_suite="tests",
)