Skip to content

Commit

Permalink
adding js files to distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
gte620v committed Jan 30, 2017
1 parent 22838a5 commit 6fd930a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
"""pyd3netviz"""

from distutils.core import setup
from setuptools import setup

with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='pyd3netviz',
packages=['pyd3netviz'],
version='0.1',
package_data={
'pyd3netviz': ['js/*.js'],
},
version='0.1.2',
description='Simple wrapper around d3 force graph for python and Jupyter Notebooks',
author='Bob Baxley',
author_email='bob.baxley@gmail.com',
license='MIT',
url='https://github.com/gte620v/pyd3netviz',
download_url='https://github.com/gte620v/pyd3netviz/archive/0.1.tar.gz',
keywords=['network graph', 'd3js', 'visualization',
'force layout', 'Jupyter Notebook'],
classifiers=[],
install_requires=required,
install_requires=['pyperclip==1.5.27', 'networkx==1.11', ],
)

0 comments on commit 6fd930a

Please sign in to comment.