forked from BoboTiG/python-mss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (54 loc) · 2.06 KB
/
setup.py
File metadata and controls
59 lines (54 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# coding: utf-8
from setuptools import setup
from mss import __version__
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Customer Service',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft',
'Operating System :: Microsoft :: Windows',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture'
]
config = {
'name': 'mss',
'version': __version__,
'author': 'Tiger-222',
'author_email': 'contact@tiger-222.fr',
'maintainer': 'Tiger-222',
'maintainer_email': 'contact@tiger-222.fr',
'url': 'https://github.com/BoboTiG/python-mss',
'description': ('An ultra fast cross-platform multiple screenshots module '
'in pure python using ctypes.'),
'long_description': open('README.rst').read(),
'classifiers': classifiers,
'platforms': ['Darwin', 'Linux', 'Windows'],
'packages': ['mss'],
'license': 'MIT'
}
setup(**config)