forked from mark-adams/pytest-test-groups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.25 KB
/
setup.py
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
import codecs
import os
from setuptools import setup
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding='utf-8').read()
setup(
name="pytest-test-groups",
description=('A Pytest plugin for running a subset of your tests by '
'splitting them in to equally sized groups.'),
url='https://github.com/mark-adams/pytest-test-groups',
author='Mark Adams',
author_email='[email protected]',
packages=['pytest_test_groups'],
version='1.0.3',
long_description=read('README.rst'),
install_requires=['pytest>=2.5'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'pytest11': [
'test-groups = pytest_test_groups',
]
},
)