|
1 | | -from setuptools import setup, find_packages |
| 1 | +from setuptools import find_packages, setup |
2 | 2 |
|
3 | 3 | with open("README.md", "r") as fh: |
4 | 4 | long_description = fh.read() |
|
14 | 14 | author="Tim Vink", |
15 | 15 | |
16 | 16 | license="MIT", |
17 | | - python_requires=">=3.7", |
| 17 | + python_requires=">=3.8", |
18 | 18 | classifiers=[ |
19 | 19 | "Operating System :: OS Independent", |
20 | | - 'Programming Language :: Python', |
21 | | - 'Programming Language :: Python :: 3', |
22 | | - 'Programming Language :: Python :: 3.8', |
23 | | - 'Programming Language :: Python :: 3.9', |
24 | | - 'Programming Language :: Python :: 3.10', |
25 | | - 'Programming Language :: Python :: 3.11', |
26 | | - 'Programming Language :: Python :: 3 :: Only', |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3 :: Only", |
27 | 27 | "License :: OSI Approved :: MIT License", |
28 | | - 'Topic :: Documentation', |
29 | | - 'Topic :: Text Processing', |
| 28 | + "Topic :: Documentation", |
| 29 | + "Topic :: Text Processing", |
30 | 30 | ], |
31 | 31 | install_requires=["mkdocs>=1.0"], |
32 | 32 | packages=find_packages(), |
|
0 commit comments