forked from tableau/TabPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (32 loc) · 956 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
import versioneer
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='tabpy-tools',
version=versioneer.get_version(),
description='Python library of tools to manage Tableau Python Server.',
url='https://github.com/tableau/TabPy',
author='Tableau',
author_email='[email protected]',
# see classifiers at https://pypi.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
],
packages=['tabpy_tools'],
license='MIT',
install_requires=[
'cloudpickle',
'decorator',
'python-dateutil',
'requests',
'genson',
'jsonschema'
],
cmdclass=versioneer.get_cmdclass(),
)