|
1 |
| -from setuptools import setup, find_packages |
| 1 | +from setuptools import setup |
2 | 2 | import pytestqt
|
3 | 3 |
|
4 |
| -description = "pytest plugin that adds fixtures for testing Qt (PyQt and PySide) applications." |
| 4 | + |
5 | 5 | 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'], |
11 | 11 | },
|
12 |
| - install_requires = ['pytest>=2.3.4'], |
13 |
| - |
| 12 | + install_requires=['pytest>=2.3.4'], |
| 13 | + |
14 | 14 | # 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 | + |
| 17 | + description=open('README.rst').read(), |
| 18 | + license="LGPL", |
| 19 | + keywords="pytest qt test unittest", |
| 20 | + url="http://github.com/nicoddemus/pytest-qt", |
21 | 21 | classifiers=[
|
22 | 22 | 'Development Status :: 5 - Production/Stable',
|
23 | 23 | 'Intended Audience :: Developers',
|
|
0 commit comments