-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
97 lines (94 loc) · 2.87 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.rst")).read()
setup(
name="racker",
version="0.3.0",
author="Andreas Motl",
author_email="[email protected]",
url="https://github.com/cicerops/racker",
description="Racker is an experimental harness tool for provisioning and launching operating system containers",
long_description=README,
download_url="https://pypi.org/project/racker/",
packages=find_packages(),
license="AGPL-3.0, EUPL-1.2",
keywords=[
"systemd",
"systemd-nspawn",
"systemd-container",
"systemd-run",
"machinectl",
"virtual",
"environment",
"build",
"test",
"testing",
"test-harness",
"harness-framework",
"test-environment",
"testing-tool",
"harness",
"oci",
"oci-image",
"oci-images",
"virtualbox",
"vagrant",
"docker",
"docker-image",
"skopeo",
"umoci",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Communications",
"Topic :: Education :: Testing",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Scientific/Engineering",
"Topic :: System :: Emulators",
"Topic :: System :: Networking",
"Topic :: Utilities",
],
entry_points={
"console_scripts": [
"racker = racker.cli:cli",
"postroj = postroj.cli:cli",
],
},
install_requires=[
"click>=7,<9",
"furl>=2,<3",
"subprocess-tee>=0.3,<1",
"python-slugify>=6,<9",
"tld>=0.10,<1",
],
extras_require={
"release": [
"build<2",
"twine<6",
],
"test": [
"pytest>=6,<9",
"pytest-cov>=2,<6",
"re-assert>=1,<2",
],
},
)