Skip to content

Commit

Permalink
Add packaging info and correct typos
Browse files Browse the repository at this point in the history
  • Loading branch information
oscar6echo committed Sep 10, 2017
1 parent ae7eb8a commit ddcbe6d
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt → LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 <copyright holders>
Copyright (c) 2015 Olivier Borderies

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
14 changes: 14 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# necessary to push to PyPI
# cf. https://tom-christie.github.io/articles/pypi/

# subfolders
recursive-include ezvis3d/api *

# Demo notebook
include demo_ezvis3e.ipynb
include BlackScholesViewer.ipynb

# Misc
include LICENSE
include README.rst
include requirements.txt
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
###ezhc
# ezvis3d

**ezvis3d** stands for easy vis.js/Graph3d.
**ezvis3d** stands for easy vis.js/Graph3d.
[vis.js Graph3d](http://visjs.org/graph3d_examples.html) is a popular, flexible, versatile, user friendly 3d visualisation javascript library.

**ezvis3d** is a wrapper that lets you transparently access the full configuration options of the library as described in their APIs, directly from the [Jupyter notebook](http://jupyter.org/).
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pandas
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# necessary to push to PyPI

[metadata]
description-file = README.rst
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# necessary to push to PyPI
# cf. http://peterdowns.com/posts/first-time-with-pypi.html
# cf. https://tom-christie.github.io/articles/pypi/


from setuptools import setup, find_packages

with open('README.rst') as f:
long_description = f.read()

setup(
name = 'ezvis3d',
packages = ['ezvis3d'],
version = '0.2',
description = 'easy vis.js Graph3d js library wrapper, accessible from pandas dataframes in the IPython notebook',
long_description = long_description,
author = 'oscar6echo',
author_email = '[email protected]',
url = 'https://github.com/oscar6echo/ezvis3d', # use the URL to the github repo
download_url = 'https://github.com/oscar6echo/ezvis3d/tarball/v0.2', # tag number at the end
keywords = ['vis.js', 'Graph3d', 'pandas', 'notebook', 'javascript'], # arbitrary keywords
license='MIT',
classifiers = [ 'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
include_package_data=True,
package_data={
'api':
['api/ezvis3d_dataset.json',
'api/ezvis3d_dataset.tsv',
'api/ezvis3d_method.json',
'api/ezvis3d_method.tsv',
'api/ezvis3d_option.json',
'api/ezvis3d_option.tsv'
]
},
)

0 comments on commit ddcbe6d

Please sign in to comment.