@@ -11,31 +11,14 @@ def readme():
1111 return f .read ()
1212
1313
14- try :
15- from setuptools .command .test import test
16- except ImportError :
17- cmdclass = {}
18- else :
19- class pytest (test ):
20-
21- def finalize_options (self ):
22- test .finalize_options (self )
23- self .test_args = []
24- self .test_suite = True
25-
26- def run_tests (self ):
27- from pytest import main
28- errno = main (self .test_args )
29- raise SystemExit (errno )
30- cmdclass = {'test' : pytest }
31-
3214wand_includes = [
3315 "wand" ,
3416 "wand.cdefs"
3517]
3618
3719wand_excludes = [
3820 "prof" , # CI Memory profile.
21+ "reports" , # CI coverage reports.
3922 "temp" , # CI artifacts.
4023 "sample" , # Old documents.
4124 "support" , # Non-public issues.
@@ -59,7 +42,8 @@ def run_tests(self):
5942 description = 'Ctypes-based simple MagickWand API binding for Python' ,
6043 long_description = readme (),
6144 long_description_content_type = 'text/x-rst' ,
62- license = 'MIT License' ,
45+ license = 'MIT' ,
46+ license_files = ['LICENSE' ],
6347 author = 'Hong Minhee' ,
6448 author_email = 'hongminhee' '@' 'member.fsf.org' ,
6549 maintainer = 'E. McConville' ,
@@ -70,26 +54,20 @@ def run_tests(self):
7054 classifiers = [
7155 'Development Status :: 5 - Production/Stable' ,
7256 'Intended Audience :: Developers' ,
73- 'License :: OSI Approved :: MIT License' ,
7457 'Operating System :: OS Independent' ,
75- 'Programming Language :: Python :: 3' ,
76- 'Programming Language :: Python :: 3.3' ,
77- 'Programming Language :: Python :: 3.4' ,
78- 'Programming Language :: Python :: 3.5' ,
79- 'Programming Language :: Python :: 3.6' ,
80- 'Programming Language :: Python :: 3.7' ,
8158 'Programming Language :: Python :: 3.8' ,
8259 'Programming Language :: Python :: 3.9' ,
8360 'Programming Language :: Python :: 3.10' ,
8461 'Programming Language :: Python :: 3.11' ,
8562 'Programming Language :: Python :: 3.12' ,
63+ "Programming Language :: Python :: 3.13" ,
64+ "Programming Language :: Python :: 3.14" ,
8665 'Programming Language :: Python :: Implementation :: CPython' ,
8766 'Programming Language :: Python :: Implementation :: PyPy' ,
8867 'Programming Language :: Python :: Implementation :: Stackless' ,
8968 'Topic :: Multimedia :: Graphics'
9069 ],
9170 keywords = 'ImageMagick ctypes' ,
92- cmdclass = cmdclass ,
9371 project_urls = {
9472 'Documentation' : 'https://docs.wand-py.org' ,
9573 'Source' : 'https://github.com/emcconville/wand' ,
0 commit comments