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
43
44
45
46
47
48
49
50
51
52
53
|
import os
from setuptools import setup, Command
def get_recursive_datafiles(directories):
"""Getting data files recursively."""
paths = []
for directory in directories:
for (path, _, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system("rm -vrf ./build ./dist ./*.pyc ./*.egg-info")
setup(
name="lcitool",
version="0.1",
packages=["lcitool"],
scripts=["bin/lcitool"],
package_data={
"lcitool": get_recursive_datafiles(["lcitool/etc",
"lcitool/configs/install",
"lcitool/cross",
"lcitool/ansible"]),
},
author="libvirt team",
author_email="libvir-list@redhat.com",
description="libvirt CI guest management tool",
keywords="libvirt ci",
url="https://libvirt.org",
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)"
],
cmdclass={
"clean": CleanCommand,
}
)
|