mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
a13c3e5ac2
Some files had discordant executable bit presence and shebang presence. This commit fixes these occurrences by adding removing the required feautures where needed.
19 lines
556 B
Python
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"],
|
|
)
|