-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 884 Bytes
/
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
__author__ = 'Igorxp5, vsla, Nielx20'
__license__ = 'MIT'
__version__ = '1.0.0'
import setuptools
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
setuptools.setup(
name='pytest-ekstazi',
version=__version__,
author=__author__,
description='Pytest plugin to select test using Ekstazi algorithm',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Igorxp5/pytest-ekstazi',
packages=['pytest_ekstazi'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Pytest'
],
entry_points={
'pytest11': ['pytest_ekstazi = pytest_ekstazi.plugin']
},
install_requires=['pytest'],
python_requires='>=3.7',
)