-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a top-level directory and sub-directories for build files, doc files, py modules, etc. Created an __init__.py and a setup.py file. First step for packaging.
- Loading branch information
Showing
16 changed files
with
34 additions
and
144 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
|
||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
|
||
setup ( | ||
name='TreeTime', | ||
version='0.1', | ||
description='TreeTime is a to-do list manager, test report tool, project manager, family ancestry editor, mind-mapping tool, etc. Using TreeTime you can categorise and organise your data items in tree structures. You can define several trees at the same time, each with a different structure, but on the same data.You can use functions (calculate sums, ratios and means) recursively up the branches of a tree. ', | ||
author='Jacob Kanev', | ||
author_email='jkanev@zoho.com', | ||
url='https://github.com/jkanev/treetime', | ||
packages=['treetime'], | ||
package_data={'treetime': ['data/items.trt', 'doc/*.png']}, | ||
) |
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,2 @@ | ||
|
||
__all__ = ['item', 'tree', 'treetime'] |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,10 @@ | ||
|
||
import os.path | ||
from PyQt5 import QtCore, QtGui, QtWidgets, uic | ||
|
||
# compile ui file if necessary | ||
if os.path.getmtime("mainwindow.py") < os.path.getmtime("mainwindow.ui"): | ||
with open("mainwindow.py", "w") as file: | ||
print("compiling ui") | ||
uic.compileUi("mainwindow.ui", file) | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
#!/bin/bash | ||
python3 treetime.py |
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