-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 916 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
from setuptools import setup, find_packages
# Setting up
setup(
name='altair_reveal',
version='0.0.3',
author='Soo Oh',
author_email='soh@revealnews.org',
description='Reveal theme for Altair library',
long_description='Reveal theme for the Altair statistical visualization library.',
long_description_content_type='text/x-rst',
url='http://www.github.com/cirlabs/altair-theme-reveal',
license='MIT',
packages=find_packages(),
install_requires=['altair'],
keywords=['python', 'altair', 'theme', 'cir', 'reveal', 'investigative'],
classifiers= [
'Development Status :: 4 - Beta',
'Intended Audience :: Other Audience',
'Programming Language :: Python :: 3',
'Operating System :: MacOS :: MacOS X',
'License :: OSI Approved :: MIT License',
]
)