-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 843 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 843 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyslicer",
version="2.1.0",
author="SlicingDice LLC",
author_email="help@slicingdice.com",
description="Official Python client for SlicingDice, Data Warehouse and "
"Analytics Database as a Service.",
install_requires=["requests", "six", "ujson"],
license="BSD",
keywords="slicingdice slicing dice data analysis analytics database",
packages=[
'pyslicer',
'pyslicer.core',
'pyslicer.utils',
],
package_dir={'pyslicer': 'pyslicer'},
long_description=read('README.md'),
classifiers=[
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)