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