You've already forked adareducer
mirror of
https://github.com/AdaCore/adareducer.git
synced 2026-02-12 13:10:07 -08:00
21 lines
458 B
Python
21 lines
458 B
Python
#! /usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name="adareducer",
|
|
version="0.1",
|
|
author="AdaCore",
|
|
author_email="support@adacore.com",
|
|
url="https://github.com/AdaCore/adareducer",
|
|
description="Ada sources reducer for bug reproducers",
|
|
install_requires=["libadalang"],
|
|
packages=["ada_reducer"],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"adareducer = ada_reducer.main:main",
|
|
]
|
|
},
|
|
)
|