forked from tsileo/cube-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 860 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 860 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
import os
import sys
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "cube-client",
version = "0.1",
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",
py_modules=['cube'],
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",
],
scripts = ["cube.py"],
zip_safe=False,
)