-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
31 lines (30 loc) · 987 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
25
26
27
28
29
30
31
from setuptools import setup
setup(
name='neo4jupyter',
version='0.2.0',
keywords='jupyter neo4j graphdb',
url='https://github.com/merqurio/neo4jupyter',
license='MIT',
author='Gabriel de Maeztu',
author_email='gabriel.maeztu@gmail.com',
packages=['neo4jupyter'],
package_dir={'neo4jupyter': '.'},
package_data={'neo4jupyter': ['assets/*.html']},
include_package_data=True,
description='A neo4j visualizer for Jupyter',
long_description='To be done',
install_requires=[
'IPython >= 4.0.0',
'ipython-cypher >= 0.2.4',
'py2neo'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
]
)