-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 1.05 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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='MetabaseClient',
version='0.2.0',
description='Metabase python wrapper is built upon Metabase restful API to help its users in extending features and adding more capability.',
long_description=readme,
long_description_content_type='text/x-rst',
author='Rahul Rathi',
author_email='VanGiex.RR@Gmail.com',
url='https://github.com/vangiex/metabaseclient',
packages=find_packages(exclude=('tests', 'docs')),
project_urls={
"Bug Tracker": "https://github.com/vangiex/metabaseclient/issues",
"Documentation": "https://github.com/vangiex/metabaseclient/wiki",
"Source Code": "https://github.com/vangiex/metabaseclient",
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
],
keywords='metabase,,metabase-api,metabase-client,metabase client,metabase python api'
)