1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#!/usr/bin/python2
#
# Copyright (C) 2014 pytest-sourceorder contributors. See COPYING for license
#
from setuptools import setup
import io
with io.open('README.rst', 'rt', encoding='utf-8') as f:
readme_contents = f.read()
setup_args = dict(
name = "pytest-sourceorder",
version = "0.5.1",
description = "Test-ordering plugin for pytest",
long_description = readme_contents,
url = "https://pagure.io/python-pytest-sourceorder",
license = "GPL",
author = "Petr Viktorin",
author_email = "pviktori@redhat.com",
py_modules = ["pytest_sourceorder"],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Framework :: Pytest',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Quality Assurance',
],
install_requires=['pytest'],
entry_points = {
'pytest11': [
'sourceorder = pytest_sourceorder',
],
},
)
if __name__ == '__main__':
setup(**setup_args)
|