Files
adareducer/setup.py
Nicolas Setton ec89ff0cc7 Add an "adareducer" script at the toplevel
For the benefit of the development environment, or any
users who only "git clone" this repository and work from it.

Fix the testsuite using this.

Rename the "adareducer" source dir to "ada_reducer"
2022-02-02 16:18:41 +00:00

21 lines
470 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=["ada_reducer"],
entry_points={
"console_scripts": [
"adareducer = ada_reducer.main:main",
]
},
)