Skip to content

Commit 54d56aa

Browse files
committed
Adding description to setup.py
1 parent e603359 commit 54d56aa

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

setup.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22
import pytestqt
33

4-
description = "pytest plugin that adds fixtures for testing Qt (PyQt and PySide) applications."
4+
55
setup(
6-
name = "pytest-qt",
7-
version = pytestqt.version,
8-
packages = ['pytestqt', 'pytestqt._tests'],
9-
entry_points = {
10-
'pytest11' : ['pytest-qt = pytestqt.plugin'],
6+
name="pytest-qt",
7+
version=pytestqt.version,
8+
packages=['pytestqt', 'pytestqt._tests'],
9+
entry_points={
10+
'pytest11': ['pytest-qt = pytestqt.plugin'],
1111
},
12-
install_requires = ['pytest>=2.3.4'],
13-
12+
install_requires=['pytest>=2.3.4'],
13+
1414
# metadata for upload to PyPI
15-
author = "Bruno Oliveira",
16-
author_email = "[email protected]",
17-
description = description,
18-
license = "LGPL",
19-
keywords = "pytest qt test unittest",
20-
url = "http://github.com/nicoddemus/pytest-qt",
15+
author="Bruno Oliveira",
16+
author_email="[email protected]",
17+
description=open('README.rst').read(),
18+
license="LGPL",
19+
keywords="pytest qt test unittest",
20+
url="http://github.com/nicoddemus/pytest-qt",
2121
classifiers=[
2222
'Development Status :: 5 - Production/Stable',
2323
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)