forked from tableau/server-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.05 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.05 KB
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
import versioneer
from setuptools import setup
setup(
name='tableauserverclient',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='Tableau',
url='https://github.com/tableau/server-client-python',
package_data={'tableauserverclient': ['py.typed']},
packages=['tableauserverclient',
'tableauserverclient.helpers',
'tableauserverclient.models',
'tableauserverclient.server',
'tableauserverclient.server.endpoint'],
license='MIT',
description='A Python module for working with the Tableau Server REST API.',
long_description="file: README.md",
long_description_content_type='text/markdown',
install_requires=[
'defusedxml>=0.7.1',
'requests>=2.11,<3.0',
],
python_requires='>3.7.0',
tests_require=[
'argparse', # technically only needed to run samples
'black',
'mock',
'pytest',
'requests-mock>=1.0,<2.0',
'mypy>=0.920'
]
)