File: setup.py

package info (click to toggle)
mkosi 4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 260 kB
  • sloc: python: 2,687; makefile: 11; sh: 9
file content (20 lines) | stat: -rwxr-xr-x 461 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/python3
# SPDX-License-Identifier: LGPL-2.1+

import sys

if sys.version_info < (3, 5):
    sys.exit("Sorry, we need at least Python 3.5.")

from setuptools import setup

setup(
    name="mkosi",
    version="4",
    description="Create legacy-free OS images",
    url="https://github.com/systemd/mkosi",
    maintainer="mkosi contributors",
    maintainer_email="systemd-devel@lists.freedesktop.org",
    license="LGPLv2+",
    scripts=["mkosi"],
)