|
11 | 11 | import smmap |
12 | 12 |
|
13 | 13 | if os.path.exists("README.md"): |
14 | | - long_description = open('README.md', "r", encoding="utf-8").read().replace('\r\n', '\n') |
| 14 | + long_description = open('README.md', encoding="utf-8").read().replace('\r\n', '\n') |
15 | 15 | else: |
16 | 16 | long_description = "See https://github.com/gitpython-developers/smmap" |
17 | 17 |
|
|
26 | 26 | license="BSD", |
27 | 27 | packages=find_packages(), |
28 | 28 | zip_safe=True, |
29 | | - python_requires=">=3.5", |
| 29 | + python_requires=">=3.6", |
30 | 30 | classifiers=[ |
31 | 31 | "Development Status :: 5 - Production/Stable", |
32 | 32 | "Environment :: Console", |
|
38 | 38 | "Operating System :: MacOS :: MacOS X", |
39 | 39 | "Programming Language :: Python", |
40 | 40 | "Programming Language :: Python :: 3", |
41 | | - "Programming Language :: Python :: 3.5", |
42 | 41 | "Programming Language :: Python :: 3.6", |
43 | 42 | "Programming Language :: Python :: 3.7", |
44 | 43 | "Programming Language :: Python :: 3.8", |
45 | 44 | "Programming Language :: Python :: 3.9", |
| 45 | + "Programming Language :: Python :: 3.10", |
46 | 46 | "Programming Language :: Python :: 3 :: Only", |
47 | 47 | ], |
48 | 48 | long_description=long_description, |
49 | 49 | long_description_content_type='text/markdown', |
50 | | - tests_require=('nose', 'nosexcover'), |
51 | | - test_suite='nose.collector' |
52 | 50 | ) |
0 commit comments