Files
revng-revng/python/setup.py
Giacomo Vercesi a13c3e5ac2 revng: fix executable/shebang in scripts
Some files had discordant executable bit presence and shebang presence.
This commit fixes these occurrences by adding removing the required
feautures where needed.
2023-05-11 10:02:46 +02:00

19 lines
556 B
Python

#
# 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"],
)