mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
Preparing pypi package
This commit is contained in:
32
setup.py
Normal file
32
setup.py
Normal file
@@ -0,0 +1,32 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
version = '0.2'
|
||||
|
||||
setup(
|
||||
name='panoramix',
|
||||
description=(
|
||||
"A interactive data visualization platform build on SqlAlchemy "
|
||||
"and druid.io"),
|
||||
version=version,
|
||||
packages=find_packages(),
|
||||
package_data={'': ['panoramix/alembic.ini']},
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
scripts=['panoramix/bin/panoramix'],
|
||||
install_requires=[
|
||||
'flask-appbuilder>=1.4.5',
|
||||
'flask-alembic>=1.2.1',
|
||||
'gunicorn>=19.3.0',
|
||||
'pandas>=0.16.2',
|
||||
'pydruid>=0.2.2',
|
||||
'parsedatetime>=1.5',
|
||||
'python-dateutil>=2.4.2',
|
||||
'requests>=2.7.0',
|
||||
'sqlparse>=0.1.16',
|
||||
],
|
||||
author='Maxime Beauchemin',
|
||||
author_email='maximebeauchemin@gmail.com',
|
||||
url='https://github.com/mistercrunch/panoramix',
|
||||
download_url=(
|
||||
'https://github.com/mistercrunch/panoramix/tarball/' + version),
|
||||
)
|
||||
Reference in New Issue
Block a user