forked from blacksburg98/dyplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 680 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup, find_packages
setup(
name='dyplot',
version='0.8.8',
author='Tsung-Han Yang',
author_email='blacksburg98@yahoo.com',
packages=find_packages(),
url='https://dyplot.readthedocs.org',
license='LICENSE.txt',
description='matplotlib-like plot functions for dygraphs.js and c3.js.',
install_requires=[
"pandas >= 0.7.3",
],
classifiers = [
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Software Development :: Code Generators",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: JavaScript",
],
)