-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
37 lines (34 loc) · 1.08 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
#!/usr/bin/python
from setuptools import find_packages
from setuptools import setup
with open('pyramid_zipkin/version.py') as f:
exec(f.read())
version = locals()['__version__']
setup(
name='pyramid_zipkin',
version=version,
provides=["pyramid_zipkin"],
author='Yelp, Inc.',
author_email='[email protected]',
license='Copyright Yelp 2018',
url="https://github.com/Yelp/pyramid_zipkin",
description='Zipkin instrumentation for the Pyramid framework.',
packages=find_packages(exclude=('tests*',)),
package_data={
'': ['*.thrift'],
'pyramid_zipkin': ['py.typed'],
},
install_requires=[
'py_zipkin >= 0.18.1',
'pyramid',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
python_requires=">=3.8",
)