Files
adareducer/setup.py
Pierre-Marie de Rodat 86c235461c Add a setup script
This commit adds a setup.py script so that, providing libadalang is
available, installing adareducer is a one-liner.  To achieve this, it
also renames the top-level package (src -> adareducer) and the script
(adareducer.py -> ada_reduce.py) to avoid name conflicts.
2021-11-19 13:15:50 +00:00

17 lines
385 B
Python

#! /usr/bin/env python
from distutils.core import setup
setup(
name="adareducer",
version="0.1",
author="AdaCore",
author_email="report@adacore.com",
url="https://github.com/AdaCore/adareducer",
description="Ada sources reducer for bug reproducers",
install_requires=["libadalang", "click"],
packages=["adareducer"],
scripts=["ada_reduce.py"],
)