-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.28 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
41
42
43
44
45
46
from os import path
import sys
from setuptools import setup
# Open encoding isn't available for Python 2.7 (sigh)
if sys.version_info < (3, 0):
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pytest-tinybird',
description='A pytest plugin to report test results to tinybird',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['pytest_tinybird'],
author='jlmadurga',
author_email='[email protected]',
version='0.3.0',
url='https://github.com/jlmadurga/pytest-tinybird',
license='MIT',
install_requires=[
'pytest>=3.8.0',
'requests>=2.28.1'
],
entry_points={
'pytest11': [
'pytest_tinybird = pytest_tinybird.plugin',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Pytest',
],
)