try: from distutils.core import setup except ImportError: from setuptools import setup open('MANIFEST.in', 'w').write("\n".join(( 'include *.rst', 'include doc/*' ))) from mss import __version__ setup( name='mss', version=__version__, author='Tiger-222', py_modules=['mss'], author_email='mickael@jmsinfo.co', description='A cross-platform multiple screenshots module in pure python using ctypes', long_description=open('README.rst').read(), classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: MacOS X', 'Environment :: Win32 (MS Windows)', 'Environment :: X11 Applications', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: Other Audience', 'License :: OSI Approved :: zlib/libpng License', 'Natural Language :: English', 'Operating System :: MacOS', 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft', 'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows :: Windows 7', 'Operating System :: Microsoft :: Windows :: Windows Vista', 'Operating System :: Microsoft :: Windows :: Windows XP', 'Operating System :: OS Independent', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.0', 'Programming Language :: Python :: 3.1', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', #'Programming Language :: Python :: 3.5', 'Topic :: Desktop Environment', 'Topic :: Multimedia :: Graphics :: Capture', 'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture', 'Topic :: Software Development', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Utilities' ], url='https://github.com/BoboTiG/python-mss' )