forked from nameko/nameko-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.26 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
#!/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.0.1",
description="Nameko GRPC extensions",
long_description=readme,
author="Matt Yule-Bennett",
url="http://github.com/nameko/nameko-grpc",
packages=find_packages(exclude=["test"]),
install_requires=["nameko", "h2>=3", "grpcio", "googleapis-common-protos"],
extras_require={"dev": ["pytest", "grpcio-tools", "pre-commit", "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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
)