forked from kataev/pytest-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.24 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
from setuptools import setup, find_packages
install_requires = ["pytest>=3.6.0"]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pytest-grpc",
license="MIT",
version='0.8.2',
author="Denis Kataev",
author_email="denis.a.kataev@gmail.com",
url="https://github.com/kataev/pytest-grpc",
platforms=["linux", "osx", "win32"],
packages=find_packages(),
entry_points={
"pytest11": ["pytest_grpc = pytest_grpc.plugin"]
},
description='pytest plugin for grpc',
license_files=("LICENSE",),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=install_requires,
classifiers=[
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)