Skip to content

Commit

Permalink
Clean setup and __metadata__
Browse files Browse the repository at this point in the history
  • Loading branch information
oscar6echo committed Dec 28, 2017
1 parent 2c230c1 commit 8b667c2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
23 changes: 13 additions & 10 deletions ezvis3d/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
__packages__ = [__name__]
__version__ = '0.2.2'
__description__ = 'easy vis.js Graph3d js library wrapper, accessible from pandas dataframes in the IPython notebook'
__long_description__ = 'See github repo'
__author__ = 'oscar6echo'
__author_email__ = '[email protected]'
__url__ = 'https://github.com/oscar6echo/{}'.format(name_url)
__download_url__ = 'https://github.com/oscar6echo/{}/tarball/{}'.format(name_url,
__version__)
__url__ = 'https://github.com/{}/{}'.format(__author__,
name_url)
__download_url__ = 'https://github.com/{}/{}/tarball/{}'.format(__author__,
name_url,
__version__)
__keywords__ = ['vis.js', 'Graph3d', 'pandas', 'notebook', 'javascript']
__license__ = 'MIT'
__classifiers__ = ['Development Status :: 4 - Beta',
Expand All @@ -21,11 +24,11 @@
__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'
]
['api/ezvis3d_dataset.json',
'api/ezvis3d_dataset.tsv',
'api/ezvis3d_method.json',
'api/ezvis3d_method.tsv',
'api/ezvis3d_option.json',
'api/ezvis3d_option.tsv'
]
}
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@
# python setup.py sdist upload -r pypi


from os import path
from codecs import open
from setuptools import setup, find_packages
from distutils.util import convert_path
from pip.req import parse_requirements

module = 'ezvis3d'

here = path.abspath(path.dirname(__file__))

meta_ns = {}
ver_path = convert_path(module + '/__meta__.py')
Expand All @@ -27,6 +24,7 @@
packages = meta_ns['__packages__']
version = meta_ns['__version__']
description = meta_ns['__description__']
long_description = meta_ns['__long_description__']
author = meta_ns['__author__']
author_email = meta_ns['__author_email__']
url = meta_ns['__url__']
Expand Down

0 comments on commit 8b667c2

Please sign in to comment.