-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
37 lines (31 loc) · 1.11 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
import os
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
install_requires = ['requests >= 1.5.5', 'slugify']
setup(
name='metabasepy',
version='1.12.0-dev0',
use_scm_version=True,
setup_requires=['setuptools_scm', 'future'],
description='Python wrapper for Metabase REST API',
long_description=README,
long_description_content_type='text/markdown',
author='mertsalik',
author_email='salik@itu.edu.tr',
url='https://github.com/mertsalik/metabasepy',
license=LICENSE,
packages=find_packages(exclude=['tests', 'docs']),
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)