-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 922 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
from setuptools import setup
test_requirements = ['pytest']
setup(
name='pytest_exploratory',
version='0.9.1',
description='Interactive console for pytest.',
url='https://github.com/nokia/pytest-exploratory',
author='Iwan Briquemont',
author_email='iwan.briquemont@nokia.com',
license='MIT',
packages=['pytest_exploratory'],
install_requires=['py>=1.1.1', 'pytest>=6.2', 'ipython'],
tests_require=test_requirements,
extras_require={'test': test_requirements},
package_data={
'pytest_exploratory': ['py.typed'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Pytest",
"Framework :: IPython",
"Framework :: Jupyter",
"Topic :: Software Development :: Testing",
],
python_requires='>=3.6',
)