-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (42 loc) · 1.56 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
raise ValueError("Requires Python 3.6+")
from metriql2tableau import __version__
with open("requirements.txt", "r") as f:
requires = [x.strip() for x in f if x.strip()]
with open("requirements-test.txt", "r") as f:
test_requires = [x.strip() for x in f if x.strip()]
with open("README.md", "r") as f:
readme = f.read()
setup(
name="metriql-tableau",
version=__version__,
description="metriql Tableau integration",
long_description=readme,
long_description_content_type="text/markdown",
author="Burak Emre Kabakci",
author_email="[email protected]",
url="https://github.com/metriql/metriql-tableau",
license="MIT License",
packages=find_packages(exclude=["tests"]),
package_data={'metriql2tableau': ['**.tds']},
test_suite="tests",
scripts=["metriql2tableau/bin/metriql-tableau"],
tests_require=test_requires,
install_requires=requires,
extras_require={"test": test_requires},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)