Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit e95215c

Browse files
yaguetoMte90
andauthored
Creates files for uploading to pypi (#42)
Co-authored-by: Daniele Scasciafratte <[email protected]>
1 parent 2f13aaa commit e95215c

20 files changed

+50
-11
lines changed

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include LICENSE
2+
recursive-include SyntaxAutoFix/words/ *
3+
recursive-include SyntaxAutoFix/utils *
4+
include SyntaxAutoFix/manageterms.ui
5+
include SyntaxAutoFix/filepath.ini

readme.md renamed to README.md

File renamed without changes.
File renamed without changes.
File renamed without changes.

SyntaxAutoFix/__main__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from . import syntaxalert
2+
from .utils import *

csvtoterms.py renamed to SyntaxAutoFix/csvtoterms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
import argparse, os.path, csv
3-
from utils.data_handlers import open_typo_file, save_typo_data
3+
from SyntaxAutoFix.utils import open_typo_file, save_typo_data
44

55
# Parse argument
66
parser = argparse.ArgumentParser(description='add new terms!')
File renamed without changes.

manageterms-gui.py renamed to SyntaxAutoFix/manageterms-gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from PyQt5 import QtCore
44
from PyQt5.QtWidgets import QMainWindow, QApplication, QErrorMessage, QShortcut
55
from PyQt5.QtGui import QKeySequence
6-
from utils.data_handlers import open_typo_file, save_typo_data
7-
from ui_manageterms import Ui_MainWindow
6+
from SyntaxAutoFix.utils import open_typo_file, save_typo_data
7+
from SyntaxAutoFix.ui_manageterms import Ui_MainWindow
88

99

1010
class MainWindow(QMainWindow, Ui_MainWindow):
File renamed without changes.

stats-gui.py renamed to SyntaxAutoFix/stats-gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from PyQt5.QtCore import Qt
55
from PyQt5.QtWidgets import QTableWidget, QTableWidgetItem, QApplication
6-
from utils.data_handlers import open_stats_file
6+
from SyntaxAutoFix.utils import open_stats_file
77

88

99
class MyTable(QTableWidget):

0 commit comments

Comments
 (0)