vaex-viz 0.5.4__tar.gz → 0.6.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: vaex-viz
3
+ Version: 0.6.0
4
+ Summary: Visualization for vaex
5
+ Home-page: https://www.github.com/maartenbreddels/vaex
6
+ Author: Maarten A. Breddels
7
+ Author-email: maartenbreddels@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: vaex-core<5,>=4.0.0
12
+ Requires-Dist: matplotlib>=1.3.1
13
+ Requires-Dist: pillow
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: license
20
+ Dynamic: license-file
21
+ Dynamic: requires-dist
22
+ Dynamic: summary
23
+
24
+ Visualization for vaex
@@ -1,10 +1,10 @@
1
1
  import os
2
- import imp
2
+ from importlib.machinery import SourceFileLoader
3
3
  from setuptools import setup
4
4
 
5
5
  dirname = os.path.dirname(__file__)
6
6
  path_version = os.path.join(dirname, "vaex/viz/_version.py")
7
- version = imp.load_source('version', path_version)
7
+ version = SourceFileLoader('version', path_version).load_module()
8
8
 
9
9
 
10
10
  name = 'vaex'
@@ -18,6 +18,8 @@ install_requires_viz = ["vaex-core>=4.0.0,<5", "matplotlib>=1.3.1", "pillow"]
18
18
  setup(name=name + '-viz',
19
19
  version=version,
20
20
  description='Visualization for vaex',
21
+ long_description="Visualization for vaex",
22
+ long_description_content_type="text/markdown",
21
23
  url=url,
22
24
  author=author,
23
25
  author_email=author_email,
@@ -0,0 +1,2 @@
1
+ __version_tuple__ = (0, 6, 0)
2
+ __version__ = '0.6.0'
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: vaex-viz
3
+ Version: 0.6.0
4
+ Summary: Visualization for vaex
5
+ Home-page: https://www.github.com/maartenbreddels/vaex
6
+ Author: Maarten A. Breddels
7
+ Author-email: maartenbreddels@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: vaex-core<5,>=4.0.0
12
+ Requires-Dist: matplotlib>=1.3.1
13
+ Requires-Dist: pillow
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: license
20
+ Dynamic: license-file
21
+ Dynamic: requires-dist
22
+ Dynamic: summary
23
+
24
+ Visualization for vaex
@@ -6,4 +6,3 @@ viz = vaex.viz:ExpressionAccessorViz
6
6
 
7
7
  [vaex.plugin]
8
8
  plot = vaex.viz.mpl:add_plugin
9
-
vaex-viz-0.5.4/PKG-INFO DELETED
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: vaex-viz
3
- Version: 0.5.4
4
- Summary: Visualization for vaex
5
- Home-page: https://www.github.com/maartenbreddels/vaex
6
- Author: Maarten A. Breddels
7
- Author-email: maartenbreddels@gmail.com
8
- License: MIT
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
@@ -1,2 +0,0 @@
1
- __version_tuple__ = (0, 5, 4)
2
- __version__ = '0.5.4'
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: vaex-viz
3
- Version: 0.5.4
4
- Summary: Visualization for vaex
5
- Home-page: https://www.github.com/maartenbreddels/vaex
6
- Author: Maarten A. Breddels
7
- Author-email: maartenbreddels@gmail.com
8
- License: MIT
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes