forked from Rouhija/matillion-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 941 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 941 Bytes
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
from setuptools import setup, find_packages
import os
import sys
py_version = sys.version_info[:2]
if not (3, 5) < py_version < (3, 9):
raise RuntimeError('snowflake-cli needs Python version 3.6 - 3.8 to run')
with open("README.md", "r") as f:
long_description = f.read()
dist = setup(
name='matillioncli',
version='1.0.4',
url='https://github.com/Rouhija/matillion-cli',
description="A cli tool for running Matillion jobs",
long_description=long_description,
long_description_content_type="text/markdown",
author="Sami Rouhe",
author_email="rouhesami@gmail.com",
packages=find_packages(),
install_requires=['requests'],
entry_points={
'console_scripts': [
'matillioncli = client.console:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)