-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 758 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name='altair_ally',
url='https://joelostblom.github.io/altair_ally',
author='Joel Ostblom',
author_email='joel.ostblom@protonmail.com',
packages=find_packages(),
install_requires=['altair', 'vega_datasets', 'pandas'],
python_requires='>=3.6',
license='BSD-3',
version='0.1.0',
description='''
Altair Ally is a companion package to Altair, which provides shortcuts to create common plots for exploratory data analysis, particularly those involving visualization of an entire dataset.''',
# Include readme in markdown format, GFM markdown style by default
long_description=open('README.md').read(),
long_description_content_type='text/markdown'
)