-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (33 loc) · 782 Bytes
/
setup.py
File metadata and controls
39 lines (33 loc) · 782 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
38
39
#!/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',
'requests>=1.0',
'simplejson',
'pytz',
'sphinx'
]
tests_require = [
'mock',
'unittest2',
]
setup(
name="tempodb",
version="1.0.1",
author="TempoDB Inc",
author_email="dev@tempo-db.com",
url="http://github.com/tempodb/tempodb-python/",
description="A client for the TempoDB API",
packages=["tempodb", "tempodb.temporal", "tempodb.protocol"],
long_description="A client for the TempoDB API.",
dependency_links=[
],
setup_requires=['nose>=1.0'],
install_requires=install_requires,
tests_require=tests_require,
)