|
6 | 6 |
|
7 | 7 |
|
8 | 8 | classifiers = [ |
9 | | - 'Development Status :: 5 - Production/Stable', |
10 | | - 'Environment :: MacOS X', |
11 | | - 'Environment :: Win32 (MS Windows)', |
12 | | - 'Environment :: X11 Applications', |
13 | | - 'Intended Audience :: Customer Service', |
14 | | - 'Intended Audience :: Developers', |
15 | | - 'Intended Audience :: Information Technology', |
16 | | - 'Intended Audience :: Education', |
17 | | - 'Intended Audience :: End Users/Desktop', |
18 | | - 'Intended Audience :: Financial and Insurance Industry', |
19 | | - 'Intended Audience :: Healthcare Industry', |
20 | | - 'Intended Audience :: Other Audience', |
21 | | - 'Intended Audience :: Science/Research', |
22 | | - 'Intended Audience :: System Administrators', |
23 | | - 'Intended Audience :: Telecommunications Industry', |
24 | | - 'License :: OSI Approved :: MIT License', |
25 | | - 'Natural Language :: English', |
26 | | - 'Operating System :: MacOS', |
27 | | - 'Operating System :: MacOS :: MacOS X', |
28 | | - 'Operating System :: Microsoft', |
29 | | - 'Operating System :: Microsoft :: Windows', |
30 | | - 'Operating System :: OS Independent', |
31 | | - 'Operating System :: POSIX :: Linux', |
32 | | - 'Programming Language :: Python', |
33 | | - 'Programming Language :: Python :: 2', |
34 | | - 'Programming Language :: Python :: 2.7', |
35 | | - 'Programming Language :: Python :: 3', |
36 | | - 'Programming Language :: Python :: 3.4', |
37 | | - 'Programming Language :: Python :: 3.5', |
38 | | - 'Programming Language :: Python :: 3.6', |
39 | | - 'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture' |
| 9 | + "Development Status :: 5 - Production/Stable", |
| 10 | + "Environment :: MacOS X", |
| 11 | + "Environment :: Win32 (MS Windows)", |
| 12 | + "Environment :: X11 Applications", |
| 13 | + "Intended Audience :: Customer Service", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "Intended Audience :: Information Technology", |
| 16 | + "Intended Audience :: Education", |
| 17 | + "Intended Audience :: End Users/Desktop", |
| 18 | + "Intended Audience :: Financial and Insurance Industry", |
| 19 | + "Intended Audience :: Healthcare Industry", |
| 20 | + "Intended Audience :: Other Audience", |
| 21 | + "Intended Audience :: Science/Research", |
| 22 | + "Intended Audience :: System Administrators", |
| 23 | + "Intended Audience :: Telecommunications Industry", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Natural Language :: English", |
| 26 | + "Operating System :: MacOS", |
| 27 | + "Operating System :: MacOS :: MacOS X", |
| 28 | + "Operating System :: Microsoft", |
| 29 | + "Operating System :: Microsoft :: Windows", |
| 30 | + "Operating System :: OS Independent", |
| 31 | + "Operating System :: POSIX :: Linux", |
| 32 | + "Programming Language :: Python", |
| 33 | + "Programming Language :: Python :: 2", |
| 34 | + "Programming Language :: Python :: 2.7", |
| 35 | + "Programming Language :: Python :: 3", |
| 36 | + "Programming Language :: Python :: 3.4", |
| 37 | + "Programming Language :: Python :: 3.5", |
| 38 | + "Programming Language :: Python :: 3.6", |
| 39 | + "Programming Language :: Python :: 3.7", |
| 40 | + "Topic :: Multimedia :: Graphics :: Capture :: Screen Capture", |
40 | 41 | ] |
41 | 42 | config = { |
42 | | - 'name': 'mss', |
43 | | - 'version': __version__, |
44 | | - 'author': 'Tiger-222', |
45 | | - 'author_email': 'contact@tiger-222.fr', |
46 | | - 'maintainer': 'Tiger-222', |
47 | | - 'maintainer_email': 'contact@tiger-222.fr', |
48 | | - 'url': 'https://github.com/BoboTiG/python-mss', |
49 | | - 'description': ('An ultra fast cross-platform multiple screenshots module ' |
50 | | - 'in pure python using ctypes.'), |
51 | | - 'long_description': open('README.rst').read(), |
52 | | - 'classifiers': classifiers, |
53 | | - 'platforms': ['Darwin', 'Linux', 'Windows'], |
54 | | - 'packages': ['mss'], |
55 | | - 'entry_points': {'console_scripts': ['mss=mss.__main__:main']}, |
56 | | - 'license': 'MIT', |
| 43 | + "name": "mss", |
| 44 | + "version": __version__, |
| 45 | + "author": "Tiger-222", |
| 46 | + "author_email": "contact@tiger-222.fr", |
| 47 | + "maintainer": "Tiger-222", |
| 48 | + "maintainer_email": "contact@tiger-222.fr", |
| 49 | + "url": "https://github.com/BoboTiG/python-mss", |
| 50 | + "description": ( |
| 51 | + "An ultra fast cross-platform multiple screenshots module " |
| 52 | + "in pure python using ctypes." |
| 53 | + ), |
| 54 | + "long_description": open("README.rst").read(), |
| 55 | + "classifiers": classifiers, |
| 56 | + "platforms": ["Darwin", "Linux", "Windows"], |
| 57 | + "packages": ["mss"], |
| 58 | + "entry_points": {"console_scripts": ["mss=mss.__main__:main"]}, |
| 59 | + "license": "MIT", |
57 | 60 | } |
58 | 61 |
|
59 | 62 | setup(**config) |
0 commit comments