-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (32 loc) · 1.01 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
from setuptools import setup
version = open("VERSION").read()
setup(
name="cassandra_opentracing",
version=version,
url="",
download_url="https://github.com/nicholasamorim/opentracing-python-cassandra/tarball/"
+ version,
license="Apache License 2.0",
author="Nicholas Amorim",
author_email="[email protected]",
description="OpenTracing support for Cassandra Driver",
long_description=open("README.md").read(),
packages=["cassandra_opentracing"],
platforms="any",
install_requires=["cassandra-driver", "opentracing>=2.0"],
extras_require={
"tests": [
"mock<1.1.0",
"pytest==4.4.1",
"pytest-cov==2.6.1",
"codecov",
]
},
classifiers=[
"Intended Audience :: Developers",
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)