-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add packaging info and correct typos
- Loading branch information
1 parent
ae7eb8a
commit ddcbe6d
Showing
6 changed files
with
61 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pandas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# necessary to push to PyPI | ||
|
||
[metadata] | ||
description-file = README.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
] | ||
}, | ||
) |