-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1.36 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
from setuptools import setup, find_packages
with open("README.md") as file:
long_description = file.read()
setup(
name="haystack-client",
version="X.X.X", # do not change, makefile updates this prior to a release
url="https://github.com/ExpediaDotCom/haystack-client-python",
description="Haystack Python OpenTracing Implementation",
author="Ryan Hilfers, Haystack",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["opentracing>=2.3.0,<3.0",
"requests>=2.19,<3.0",
"requests-futures>=0.9.9,<1.0",
"protobuf>=3.11.2,<4.0",
"grpcio>=1.26.0,<2.0"],
tests_require=["mock",
"nose",
"pytest",
"coverage",],
test_suite="nose.collector",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
python_requires=">=3.5",
keywords=["opentracing", "haystack", "tracing", "microservices", "distributed"],
packages=find_packages()
)