33import os
44import sys
55
6- from codecs import open
76from shutil import rmtree
87from setuptools import setup
98
1413
1514install_requires = ['text-unidecode>=1.3' ]
1615extras_requires = {'unidecode' : ['Unidecode>=1.1.1' ]}
17- test_requires = []
1816
1917about = {}
20- with open (os .path .join (here , package , '__version__.py' ), 'r' , 'utf-8' ) as f :
18+ with open (os .path .join (here , package , '__version__.py' ), 'r' , encoding = 'utf-8' ) as f :
2119 exec (f .read (), about )
2220
23- with open ('README.md' , 'r' , 'utf-8' ) as f :
21+ with open ('README.md' , 'r' , encoding = 'utf-8' ) as f :
2422 readme = f .read ()
2523
2624
@@ -66,7 +64,6 @@ def status(s):
6664 include_package_data = True ,
6765 python_requires = python_requires ,
6866 install_requires = install_requires ,
69- tests_require = test_requires ,
7067 extras_require = extras_requires ,
7168 zip_safe = False ,
7269 cmdclass = {},
@@ -75,7 +72,6 @@ def status(s):
7572 'Development Status :: 5 - Production/Stable' ,
7673 'Intended Audience :: Developers' ,
7774 'Natural Language :: English' ,
78- 'License :: OSI Approved :: MIT License' ,
7975 'Programming Language :: Python' ,
8076 'Programming Language :: Python :: 3' ,
8177 'Programming Language :: Python :: 3.10' ,
0 commit comments