You've already forked adareducer
mirror of
https://github.com/AdaCore/adareducer.git
synced 2026-02-12 13:10:07 -08:00
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.
17 lines
385 B
Python
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"],
|
|
)
|