Skip to content

Commit 08d0ec0

Browse files
committed
Updated packaging code
- Including missing files (LICENSE, README) - Added more classifiers for setup.py
1 parent 35f7cc6 commit 08d0ec0

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

CHANGELOG.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

Manifest.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include LICENSE
2+
include README.md
3+
include distribute_setup.py

setup.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
},
1515
install_requires = ['pytest>=2.3.4'],
1616

17-
py_modules = ['distribute_setup'],
18-
1917
# metadata for upload to PyPI
2018
author = "Bruno Oliveira",
2119
author_email = "[email protected]",
@@ -24,9 +22,17 @@
2422
keywords = "pytest qt test unittest",
2523
url = "http://github.com/nicoddemus/pytest-qt",
2624
classifiers=[
27-
'Topic :: Software Development :: Testing',
28-
'Topic :: Software Development :: Quality Assurance',
25+
'Development Status :: 4 - Beta',
26+
'Framework :: PyQt',
27+
'Framework :: PySide',
28+
'Framework :: Qt',
2929
'Intended Audience :: Developers',
30+
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
3031
'Operating System :: OS Independent',
32+
'Programming Language :: Python :: 2.7',
33+
'Topic :: Desktop Environment :: Window Managers',
34+
'Topic :: Software Development :: Quality Assurance',
35+
'Topic :: Software Development :: Testing',
36+
'Topic :: Software Development :: User Interfaces',
3137
]
32-
)
38+
)

0 commit comments

Comments
 (0)