forked from tableau/TabPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
44 additions
and
4,732 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,27 @@ | ||
import versioneer | ||
try: | ||
from setuptools import setup | ||
except ImportError as err: | ||
print("Missing Python module requirement: setuptools.") | ||
raise err | ||
|
||
def read_version(): | ||
with open('../VERSION') as h: | ||
return h.read().strip() | ||
|
||
__version__=read_version() | ||
|
||
setup( | ||
name='tabpy-server', | ||
python_requires='>=3.7.2', | ||
version=versioneer.get_version(), | ||
python_requires='>=3.6.5', | ||
version=__version__, | ||
description='Web server Tableau uses to run Python scripts.', | ||
url='https://github.com/tableau/TabPy', | ||
author='Tableau', | ||
author_email='[email protected]', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
], | ||
|
@@ -36,7 +40,7 @@ | |
'decorator', | ||
'future', | ||
'genson', | ||
'jsonschema>=2.3.0', | ||
'jsonschema~=2.3.0', | ||
'mock', | ||
'numpy', | ||
'python-dateutil', | ||
|
@@ -45,7 +49,7 @@ | |
'singledispatch', | ||
'simplejson', | ||
'tornado==5.1.1', | ||
'Tornado-JSON' | ||
], | ||
cmdclass=versioneer.get_cmdclass(), | ||
'Tornado-JSON', | ||
'urllib3' | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +0,0 @@ | ||
|
||
from ._version import get_versions | ||
__version__ = get_versions()['version'] | ||
del get_versions | ||
Oops, something went wrong.