-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
executable file
·70 lines (67 loc) · 2.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python3
from distutils.core import setup
import os
import glob
setup(
name="kevin",
version="0.7",
description="Self-hostable continuous integration toolkit",
long_description=(
"Components for running a continuous integration service "
"right on your own servers.\n"
"Kevin interacts with the Internet, falk manages the virtual machines "
"and containers, chantal executes your build jobs.\n\n"
"It's designed to interact with a code hosting platform like GitHub "
"but can easily be extended for others.\n"
"Pull requests are build in temporary containers that are deleted"
"after execution."
),
maintainer="SFT Technologies",
maintainer_email="[email protected]",
url="https://github.com/SFTtech/kevin",
license='AGPL3+',
packages=[
"kevin",
"kevin.service",
"kevin.simulator",
"chantal",
"falk",
"falk.vm",
],
data_files=[
("/usr/lib/systemd/system/", [
"etc/kevin.service",
"etc/falk.service",
]),
("/usr/lib/tmpfiles.d", [
"etc/tmpfiles.d/kevin.conf",
]),
("/etc/kevin", [
"etc/kevinfile.example",
"etc/kevin.conf.example",
"etc/falk.conf.example",
]),
("/etc/kevin/projects", [
"etc/project.conf.example",
]),
("/usr/share/webapps/mandy",
glob.glob(os.path.join(os.path.dirname(__file__), "mandy/*"))),
],
platforms=[
'Linux',
],
classifiers=[
("License :: OSI Approved :: "
"GNU Affero General Public License v3 or later (AGPLv3+)"),
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Version Control",
"Topic :: Internet :: WWW/HTTP",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Environment :: Web Environment",
"Environment :: Console",
"Operating System :: POSIX :: Linux"
],
)