|
4 | 4 | import glob |
5 | 5 | import os |
6 | 6 |
|
7 | | -from setuptools import setup, Extension |
| 7 | +from setuptools import setup |
8 | 8 |
|
9 | 9 | from Cython.Build import cythonize |
10 | 10 |
|
|
22 | 22 | 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', |
23 | 23 | 'Programming Language :: Cython', |
24 | 24 | 'Programming Language :: Python', |
25 | | - 'Programming Language :: Python :: 2', |
26 | | - 'Programming Language :: Python :: 2.7', |
27 | | - 'Programming Language :: Python :: 3', |
28 | | - 'Programming Language :: Python :: 3.4', |
29 | | - 'Programming Language :: Python :: 3.5', |
30 | | - 'Programming Language :: Python :: 3.6', |
31 | | - 'Programming Language :: Python :: 3.7', |
32 | | - 'Programming Language :: Python :: 3.8', |
33 | 25 | 'Programming Language :: Python :: 3.9', |
34 | 26 | 'Programming Language :: Python :: 3.10', |
35 | 27 | 'Programming Language :: Python :: 3.11', |
|
64 | 56 | "sources": LIBDATRIE_FILES, |
65 | 57 | "include_dirs": [LIBDATRIE_DIR]})], |
66 | 58 | ext_modules=ext_modules, |
67 | | - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", |
| 59 | + python_requires=">=3.9", |
68 | 60 | setup_requires=['Cython>=0.28'], |
69 | 61 | tests_require=["pytest", "hypothesis"]) |
0 commit comments