-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
29 lines (26 loc) · 880 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='cube-client',
version='0.2.0',
author='Thomas Sileo',
author_email='thomas.sileo@gmail.com',
description='A Python client for Cube: Time Series Data Collection & Analysis',
license='MIT',
keywords='cube time series',
url='https://github.com/tsileo/cube-client',
packages=find_packages(exclude=['ez_setup', 'tests', 'tests.*']),
test_suite="cube.tests",
long_description=read('README.rst'),
install_requires=['requests'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Database',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
zip_safe=False,
)