-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
32 lines (31 loc) · 1.11 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
from setuptools import setup
from python import __version__
setup(
name="jgraph",
version=__version__,
description="View graph data structures in the IPython notebook.",
url="http://github.com/patrickfuller/jgraph/",
license="MIT",
author="Patrick Fuller",
author_email="patrickfuller@gmail.com",
package_dir={'jgraph': 'python',
'jgraph.js': 'js'},
package_data={'jgraph.js': ['js/build/jgraph.min.js']},
include_package_data=True,
packages=['jgraph', 'jgraph.js'],
install_requires=['ipython'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Framework :: IPython',
'Topic :: Education :: Computer Aided Instruction (CAI)'
]
)