1 From d6a0c3045598597023ee2423144b134fc87f4b6f Mon Sep 17 00:00:00 2001
2 From: Julien Malik <julien.malik@paraiso.me>
3 Date: Sat, 26 Nov 2022 13:05:20 +0100
4 Subject: [PATCH] add setup.py to avoid depending on flit for building
7 setup.py | 18 ++++++++++++++++++
8 1 file changed, 18 insertions(+)
9 create mode 100644 setup.py
14 +#!/usr/bin/env python
19 + name='exceptiongroup',
21 + description='Backport of PEP 654 (exception groups)',
22 + author='Alex Grönholm',
23 + author_email='Alex Grönholm <alex.gronholm@nextday.fi>',
24 + url='https://github.com/agronholm/exceptiongroup',
25 + packages=['exceptiongroup'],
26 + package_data={'': ['*']},
27 + package_dir={'': 'src'},
28 + extras_require={'test': ['pytest >= 6']},
29 + python_requires='>=3.7',