Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
uweschmitt committed Jun 13, 2014
0 parents commit 45116eb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.pyc
Empty file added qt_object_viewer/__init__.py
Empty file.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages

version = (0, 0, 1)

description = "qt tree model + tree viewre for nestes objects"

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

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=[]
)

0 comments on commit 45116eb

Please sign in to comment.