This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
63 lines (60 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages
import os.path
readme = ""
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.rst")
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
readme = stream.read().decode("utf8")
setup(
long_description=readme,
long_description_content_type="text/x-rst",
name="redash-iodide",
use_scm_version={"version_scheme": "post-release", "local_scheme": "dirty-tag"},
setup_requires=["setuptools_scm"],
description="Extensions to Redash for Iodide by Mozilla",
project_urls={"homepage": "https://github.com/iodide-project/redash-iodide"},
author="Mozilla Foundation",
author_email="[email protected]",
license="MPL-2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment :: Mozilla",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
],
entry_points={
"redash.extensions": [
"iodide_explore = redash_iodide.explore.extension:extension",
"iodide_settings = redash_iodide.settings:extension",
"iodide_groups = redash_iodide.groups:extension",
],
"redash.bundles": ["iodide_explore = redash_iodide.explore"],
"redash.periodic_tasks": [],
},
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=["requests", "six"],
extras_require={
"test": [
"flake8==3.5.0",
"mock",
"pytest",
"pytest-cov",
"pytest-flake8<1.0.1",
],
"dev": ["watchdog"],
},
)