generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 718 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 718 Bytes
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
#!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
hib_classifiers = [
"License :: OSI Approved :: APACHE SOFTWARE LICENSE",
"Topic :: Utilities",
]
with open("README.md", "r") as fp:
hib_long_description = fp.read()
setup(name="ec2-hibinit-agent",
version='1.0.9',
author="Anchal Agarwal",
author_email="anchalag@amazon.com",
tests_require=["pytest"],
scripts=['agent/hibinit-agent'],
data_files=[('/etc', ['etc/hibinit-config.cfg'])],
description="Hibernation setup for EC2 Instances",
long_description=hib_long_description,
license="Apache 2.0",
classifiers=hib_classifiers
)