Skip to content

Commit

Permalink
released 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uweschmitt committed Jun 13, 2014
1 parent acc8f35 commit 7700bc8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 2 additions & 0 deletions qt_object_viewer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from dialog import ObjectTreeDialog
from tree_widget import ObjectTreeWidget
from tree import Node, Leaf

__version__ = (1, 0, 0)
17 changes: 9 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
from setuptools import setup, find_packages

version = (0, 0, 1)
description = "qt tree model + tree viewer for nested objects"

description = "qt tree model + tree viewre for nestes objects"
long_description = """
This Python package provides a Qt based widget and a dialog class for exploring a
nested object structure.
For examples see: http:https://github.com/uweschmitt/qt_object_viewer.git
"""

setup(name="qt_object_viewer",
description=description,
long_description=long_description,
maintainer="Uwe Schmitt",
maintainer_email="[email protected]",
platforms=["any"],

version="1.0.0",
packages=find_packages(exclude=["tests"]),
#entry_points={
#"gui_scripts": ["envipy = eawag_gui.main:main"]
#},
version="%d.%d.%d" % version,
include_package_data=True,
zip_safe=False,
install_requires=["guidata"]
)

0 comments on commit 7700bc8

Please sign in to comment.