forked from tempodb/tempodb-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 724 Bytes
/
setup.py
File metadata and controls
37 lines (31 loc) · 724 Bytes
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/env python
# encoding: utf-8
"""
tempodb/setup.py
Copyright (c) 2012 TempoDB Inc. All rights reserved.
"""
from setuptools import setup
install_requires = [
'python-dateutil==1.5',
'requests>=1.0',
'simplejson',
]
tests_require = [
'mock',
'unittest2',
]
setup(
name="tempodb",
version="0.5.0",
author="TempoDB Inc",
author_email="dev@tempo-db.com",
url="http://github.com/getsentry/tempodb-python/",
description="A client for the TempoDB API",
packages=["tempodb"],
long_description="A client for the TempoDB API.",
dependency_links=[
],
setup_requires=['nose>=1.0'],
install_requires=install_requires,
tests_require=tests_require,
)