1 | import platform |
||
2 | from distutils.core import setup |
||
3 | |||
4 | with open("README.md", "r") as fh: |
||
5 | long_description_readme = fh.read() |
||
6 | |||
7 | tableau_hyper_api__current_known_version = '0.0.8953' |
||
8 | |||
9 | if platform.system() == 'Windows': |
||
10 | url__tableau_hyper_api = 'http://downloads.tableau.com/tssoftware/tableauhyperapi-'\ |
||
11 | + tableau_hyper_api__current_known_version \ |
||
12 | + '-py3-none-win_amd64.whl' |
||
13 | elif platform.system() == 'Darwin': |
||
14 | url__tableau_hyper_api = 'http://downloads.tableau.com/tssoftware/tableauhyperapi-'\ |
||
15 | + tableau_hyper_api__current_known_version \ |
||
16 | + '-py3-none-macosx_10_11_x86_64.whl' |
||
17 | elif platform.system() == 'Linux': |
||
18 | url__tableau_hyper_api = 'http://downloads.tableau.com/tssoftware/tableauhyperapi-'\ |
||
19 | + tableau_hyper_api__current_known_version \ |
||
20 | + '-py3-none-linux_x86_64.whl' |
||
21 | |||
22 | setup( |
||
23 | author = 'Daniel Popiniuc', |
||
24 | author_email = '[email protected]', |
||
25 | dependency_links = [ |
||
26 | url__tableau_hyper_api |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
27 | ], |
||
28 | description = 'Wrapper to ease data management into Tableau Hyper format', |
||
29 | license = 'LGPL3', |
||
30 | long_description = long_description_readme, |
||
31 | long_description_content_type = "text/markdown", |
||
32 | name = 'tableau-hyper-management', |
||
33 | python_requires = '>=3.6', |
||
34 | version = '1.0', |
||
35 | download_url = '', |
||
36 | ) |
||
37 |