Files
revng-revng/python/setup.py
T
Giacomo Vercesi 9d5b6d1f34 revng cli: migrate legacy scripts to _commands
Move the remaining commands in the `scripts` to be used by the `revng`
command line driver.
2023-05-11 10:02:46 +02:00

20 lines
579 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"],
)