forked from TempoIQ/tempoiq-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 856 Bytes
/
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
38
39
40
#!/usr/bin/env python
# encoding: utf-8
"""
tempoiq-python/setup.py
Copyright (c) 2012-2015 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="tempoiq",
version="1.0.1",
author="TempoIQ Inc",
author_email="[email protected]",
url="http://github.com/tempoiq/tempoiq-python/",
description="Python bindings for the TempoIQ API",
packages=["tempoiq", "tempoiq.temporal", "tempoiq.protocol",
"tempoiq.protocol.query"],
long_description="Python bindings for the TempoIQ API",
dependency_links=[
],
setup_requires=['nose>=1.0'],
install_requires=install_requires,
tests_require=tests_require,
)