forked from epmoyer/ipy_table
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (29 loc) · 1.12 KB
/
setup.py
File metadata and controls
executable file
·35 lines (29 loc) · 1.12 KB
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
"""Table formatting package for IP[y] Notebooks
Copyright (c) 2012-2013, ipy_table Development Team.
Distributed under the terms of the Modified BSD License.
The full license is in the file COPYING.txt, distributed with this software.
This project is maintained at http://github.com/epmoyer/ipy_table
"""
from setuptools import setup
setup(
author="Eric Moyer",
author_email="<eric@lemoncrab.com>",
description="Creates richly formatted tables in an IPython Notebook",
license="Modified BSD",
keywords=['table', 'ipython', 'notebook'],
url='http://epmoyer.github.com/ipy_table/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Scientific/Engineering',
],
name="ipy_table",
version="1.13",
py_modules=["ipy_table"],
)