FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
TabPy/setup.py at master · tableau/TabPy · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
tableau
/
TabPy
Public
Notifications
You must be signed in to change notification settings
Fork
613
Star
1.7k
Code
Issues
18
Pull requests
3
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
TabPy
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
112 lines (103 loc) · 3.69 KB
Breadcrumbs
TabPy
/
setup.py
Copy path
File metadata and controls
executable file
·
112 lines (103 loc) · 3.69 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
"""Web server Tableau uses to run Python scripts.
TabPy (the Tableau Python Server) is an external service implementation
which expands Tableau's capabilities by allowing users to execute Python
scripts and saved functions via Tableau's table calculations.
"""
import
os
from
setuptools
import
setup
,
find_packages
import
unittest
DOCLINES
=
(
__doc__
or
""
).
split
(
"
\n
"
)
def
setup_package
():
def
read
(
fname
):
return
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
fname
)).
read
()
setup
(
name
=
"tabpy"
,
version
=
read
(
"tabpy/VERSION"
),
description
=
DOCLINES
[
0
],
long_description
=
"
\n
"
.
join
(
DOCLINES
[
1
:])
+
"
\n
"
+
read
(
"CHANGELOG"
),
long_description_content_type
=
"text/markdown"
,
url
=
"https://github.com/tableau/TabPy"
,
author
=
"Tableau"
,
author_email
=
"github@tableau.com"
,
maintainer
=
"Tableau"
,
maintainer_email
=
"github@tableau.com"
,
download_url
=
"https://pypi.org/project/tabpy"
,
project_urls
=
{
"Bug Tracker"
:
"https://github.com/tableau/TabPy/issues"
,
"Documentation"
:
"https://tableau.github.io/TabPy/"
,
"Source Code"
:
"https://github.com/tableau/TabPy"
,
},
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Intended Audience :: Developers"
,
"Intended Audience :: Science/Research"
,
"License :: OSI Approved :: MIT License"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3.11"
,
"Programming Language :: Python :: 3.12"
,
"Programming Language :: Python :: 3.13"
,
"Programming Language :: Python :: 3.14"
,
"Topic :: Scientific/Engineering"
,
"Topic :: Scientific/Engineering :: Information Analysis"
,
"Operating System :: Microsoft :: Windows"
,
"Operating System :: POSIX"
,
"Operating System :: Unix"
,
"Operating System :: MacOS"
,
],
platforms
=
[
"Windows"
,
"Linux"
,
"Mac OS-X"
,
"Unix"
],
keywords
=
[
"tabpy tableau"
],
packages
=
find_packages
(
exclude
=
[
"docs"
,
"misc"
]),
package_data
=
{
"tabpy"
: [
"VERSION"
,
"tabpy_server/state.ini.template"
,
"tabpy_server/static/*"
,
"tabpy_server/common/default.conf"
,
]
},
python_requires
=
">=3.10"
,
license
=
"MIT"
,
# Note: many of these required packages are included in base python
# but are listed here because different linux distros use custom
# python installations. And users can remove packages at any point
install_requires
=
[
"cloudpickle"
,
"configparser"
,
"coverage"
,
"coveralls"
,
"cryptography"
,
"docopt"
,
"future"
,
"genson"
,
"hypothesis"
,
"jsonschema"
,
"mock"
,
"nltk"
,
"numpy"
,
"pandas"
,
"pyjwt[crypto]>=2.9,<3"
,
"pyopenssl"
,
"pytest"
,
"pytest-cov"
,
"requests"
,
"scipy"
,
"simplejson"
,
"scikit-learn"
,
"textblob"
,
"tornado"
,
"twisted"
,
"urllib3"
,
"pyarrow"
,
],
entry_points
=
{
"console_scripts"
: [
"tabpy=tabpy.tabpy:main"
,
"tabpy-deploy-models=tabpy.models.deploy_models:main"
,
"tabpy-user=tabpy.utils.tabpy_user:main"
,
],
},
setup_requires
=
[
"pytest-runner"
],
test_suite
=
"pytest"
,
)
if
__name__
==
"__main__"
:
setup_package
()
Back
|
FazBrowse Home
|
New Git URL