-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (32 loc) · 1 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
import os
import json
from setuptools import setup, find_packages
GITHUB_URL = 'https://github.com/mistercrunch/airflow-webserver'
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
PACKAGE_DIR = os.path.join(BASE_DIR, 'airflow-webserver', 'assets')
version_string = "0.1.0"
setup(
name='airflow_webserver',
description=("A web server for the Airflow platform"),
version=version_string,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
#scripts=['superset/bin/superset'],
install_requires=[
'airflow>=1.7.0',
'flask_appbuilder',
],
tests_require=[
'nose',
],
author='Maxime Beauchemin',
author_email='[email protected]',
url='https://github.com/mistercrunch/airflow-webserver',
download_url=GITHUB_URL + '/tarball/' + version_string,
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)