-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (27 loc) · 886 Bytes
/
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
from setuptools import setup, find_packages
import re
def get_long_description():
with open('README.md') as f:
return re.sub('!\[(.*?)\]\(docs/(.*?)\)', r'![\1](https://github.com/mara/mara-mondrian/raw/master/docs/\2)', f.read())
setup(
name='mara-mondrian',
version='2.0.2',
description='A python integration for the Saiku ad hoc analysis tool',
long_description=get_long_description(),
long_description_content_type='text/markdown',
url = 'https://github.com/mara/mara-mondrian',
install_requires=[
"flask>=0.12",
"mara-page>=1.1.0",
"mara-schema>=1.0.0",
"lxml>=3.8.0",
"requests"
],
python_requires='>=3.6',
setup_requires=['setuptools_scm'],
include_package_data=True,
packages=find_packages(),
author='Mara contributors',
license='MIT',
entry_points={},
)