forked from litaotao/IPython-Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.83 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
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
import os
import io
from setuptools import find_packages, setup
def load_readme():
readme_file = "README.md" if "README.md" in os.listdir(".") else "README.rst"
return io.open(readme_file, encoding='utf8').read()
setup(
name="IPython-Dashboard",
version='0.1.5',
author="Taotao Li",
author_email="[email protected]",
url="https://github.com/litaotao/IPython-Dashboard",
keywords = ("ipython", "dashboard", "interactive", "visualization", "data science", "data analysis", "streaming"),
license="BSD",
packages=find_packages(),
package_dir={"dashboard": "dashboard"},
include_package_data=True,
description="An stand alone, light-weight web server for building, sharing graphs in created in ipython. Let ipython do what it focus, let this do what everyone needs for building a interactive, collaborated and real-time streaming dashboards.",
long_description=load_readme(),
install_requires=io.open("requirements.txt", encoding='utf8').read(),
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3'],
zip_safe=False,
entry_points={
'console_scripts': [
'dash-server = dashboard.server.start:run',
]
}
)