Files
adareducer/setup.py
Pierre-Marie de Rodat 45b5c1d43b Remove the dependency on "click"
The subset of click that is actually used matches what the standard
argparse module provides. Not depending on click simplifies the
packaging of adareducer.

TN: V317-010
2022-07-06 17:03:03 +02:00

21 lines
457 B
Python

#! /usr/bin/env python
from setuptools 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"],
packages=["ada_reducer"],
entry_points={
"console_scripts": [
"adareducer = ada_reducer.main:main",
]
},
)