summaryrefslogtreecommitdiff
path: root/setup.py
blob: 4fd958bbcadb442c2002e0ca9b32bc07c06f4339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python3

from setuptools import setup

setup(
    name="mkosi",
    version="1",
    description="Create legacy-free OS images",
    url="https://github.com/systemd/mkosi",
    author="Lennart Poettering",
    author_email="lennart@poettering.net",
    license="LICENSE",
    scripts=["mkosi"],
)