-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
61 lines (55 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from codecs import open
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), "r", "utf-8") as handle:
readme = handle.read()
setup(
name="nameko-grpc",
version="1.4.0rc3",
description="Nameko gRPC extensions",
long_description=readme,
long_description_content_type="text/markdown",
author="Matt Yule-Bennett",
url="http://github.com/nameko/nameko-grpc",
packages=find_packages(exclude=["test"]),
install_requires=[
"nameko>=3.0.0-rc9",
"h2>=3",
"grpcio",
"protobuf",
"googleapis-common-protos",
"importlib-metadata<5 ; python_version<='3.7'",
],
extras_require={
"dev": [
"coverage",
"pytest",
"pytest-timeout",
"grpcio<1.50",
"grpcio-tools",
"grpcio-status",
"googleapis-common-protos",
"objgraph",
"wrapt",
"zmq",
]
},
zip_safe=True,
license="Apache License, Version 2.0",
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
)