Skip to content

Commit 5d65ff9

Browse files
author
BoboTiG
committed
Updat setup.py
1 parent a24485c commit 5d65ff9

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
*.pyc
1+
dist/
22
tests/
3-
MANIFEST.in
3+
*.pyc
4+
MANIFEST*

setup.py

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,30 @@
44
except ImportError:
55
from setuptools import setup
66

7-
open('MANIFEST.in', 'w').write('\n'.join((
8-
"include *.rst",
7+
open('MANIFEST.in', 'w').write("\n".join((
8+
'include *.rst',
99
)))
1010

1111
from mss import __version__
1212

1313
setup(
14-
15-
name="mss",
14+
name='mss',
1615
version=__version__,
17-
author="Tiger-222",
16+
author='Tiger-222',
1817
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',
2120
long_description=open('README.rst').read(),
2221
classifiers=[
2322
'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',
3130
],
32-
url="https://github.com/BoboTiG/python-mss"
31+
url='https://github.com/BoboTiG/python-mss'
3332
)
3433

0 commit comments

Comments
 (0)