Files
revng-revng/python/setup.py
T
Alessandro Di Federico 586feabd3d Drop scripts/revng-model-dump
2022-03-17 16:46:02 +01:00

24 lines
631 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_namespace_packages
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").readlines(),
scripts=[
"scripts/revng",
"scripts/revng-merge-dynamic",
"scripts/revng-model-compare",
"scripts/revng-model-to-json",
"scripts/revng-translate",
],
)