forked from mark-adams/pytest-test-groups
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
40 lines (35 loc) · 1.38 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
39
40
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-split-tests",
description=('A Pytest plugin for running a subset of your tests by '
'splitting them in to equally sized groups. Forked from '
'Mark Adams\' original project pytest-test-groups.'),
url='https://github.com/wchill/pytest-split-tests',
author='Eric Ahn',
author_email='[email protected]',
packages=['pytest_split_tests'],
version='1.1.0',
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 :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
entry_points={
'pytest11': [
'split-tests = pytest_split_tests',
]
},
)