-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
38 lines (34 loc) · 1.35 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
#!/usr/bin/python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
ec2sys_autotune_classifiers = [
"Development Status :: Preview",
"Environment :: Amazon Linux 2",
"Intended Audience :: AWS EC2 AL2 consumers",
"Operating System :: Amazon Linux 2",
"Programming Language :: Python",
"License :: GNU GENERAL PUBLIC LICENSE 2.0",
"Topic :: Utilities",
]
with open("README.md", "r") as fp:
ec2sys_autotune_long_description = fp.read()
setup(name="ec2sys-autotune",
version='1.0.6',
author="Vallish Vaidyeshwara",
author_email="[email protected]",
url="https://github.com/amazonlinux/autotune",
scripts=["scripts/ec2sys_autotune_start",
"scripts/ec2sys_autotune_stop",
"scripts/autotune"],
data_files=[("/usr/lib/systemd/system", ["unit/autotune.service"]),
("/etc", ["config/ec2sys-autotune.cfg"]),
("/etc/ec2sys-autotune.d", ["config/user.ini"]),
("/var/lib/ec2sys-autotune", [])],
packages=["ec2sys_autotune"],
package_dir={"ec2sys_autotune": "src/ec2sys_autotune"},
description="Amazon Linux Kernel Autotuning",
long_description=ec2sys_autotune_long_description,
license="GNU GENERAL PUBLIC LICENSE 2.0",
classifiers=ec2sys_autotune_classifiers)