forked from zhyon404/python-grpc-prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 697 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='python_grpc_prometheus',
version='0.1.1',
description='Python gRPC Prometheus Interceptors',
long_description=long_description,
long_description_content_type="text/markdown",
author='Zhang Yong',
author_email='yongzhang1@foxmail.com',
url="https://github.com/zhyon404/python-grpc-prometheus",
install_requires=[
'setuptools==39.0.1',
'prometheus_client==0.3.1'
],
license='MIT',
packages=find_packages(exclude=["tests.*", "tests"]),
)