|
4 | 4 | except ImportError: |
5 | 5 | from setuptools import setup |
6 | 6 |
|
7 | | -open('MANIFEST.in', 'w').write('\n'.join(( |
8 | | - "include *.rst", |
| 7 | +open('MANIFEST.in', 'w').write("\n".join(( |
| 8 | + 'include *.rst', |
9 | 9 | ))) |
10 | 10 |
|
11 | 11 | from mss import __version__ |
12 | 12 |
|
13 | 13 | setup( |
14 | | - |
15 | | - name="mss", |
| 14 | + name='mss', |
16 | 15 | version=__version__, |
17 | | - author="Tiger-222", |
| 16 | + author='Tiger-222', |
18 | 17 | py_modules=['mss'], |
19 | | - author_email="contact@tiger-222.fr", |
20 | | - description="A cross-platform multi-screen shot module in pure python using ctypes", |
| 18 | + author_email='contact@tiger-222.fr', |
| 19 | + description='A cross-platform multi-screen shot module in pure python using ctypes', |
21 | 20 | long_description=open('README.rst').read(), |
22 | 21 | classifiers=[ |
23 | 22 | 'Programming Language :: Python', |
24 | | - "Intended Audience :: Developers", |
25 | | - "Intended Audience :: Information Technology", |
26 | | - "License :: OSI Approved :: zlib/libpng License", |
27 | | - "Natural Language :: English", |
28 | | - "Programming Language :: Python :: 2.7", |
29 | | - "Programming Language :: Python :: 3.3", |
30 | | - "Topic :: Multimedia :: Graphics :: Capture :: Screen Capture", |
| 23 | + 'Intended Audience :: Developers', |
| 24 | + 'Intended Audience :: Information Technology', |
| 25 | + 'License :: OSI Approved :: zlib/libpng License', |
| 26 | + 'Natural Language :: English', |
| 27 | + 'Programming Language :: Python :: 2.7', |
| 28 | + 'Programming Language :: Python :: 3.3', |
| 29 | + 'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture', |
31 | 30 | ], |
32 | | - url="https://github.com/BoboTiG/python-mss" |
| 31 | + url='https://github.com/BoboTiG/python-mss' |
33 | 32 | ) |
34 | 33 |
|
0 commit comments