Files
revng-revng/python/setup.py
T
2022-04-20 09:57:08 +02:00

25 lines
711 B
Python

#!/usr/bin/env python3
#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
from setuptools import find_namespace_packages, setup
setup(
name="revng",
version="0.1.0",
description="rev.ng Python libraries",
author="Filippo Cremonese (rev.ng Labs)",
author_email="filippocremonese@rev.ng",
url="https://github.com/revng/revng",
packages=find_namespace_packages(),
include_package_data=True,
install_requires=open("requirements.txt", encoding="utf-8").readlines(), # noqa: SIM115
scripts=[
"scripts/revng",
"scripts/revng-merge-dynamic",
"scripts/revng-model-compare",
"scripts/revng-model-to-json",
],
)