From: gamesguru Date: Wed, 2 Jun 2021 12:43:11 +0000 (-0400) Subject: remove build.py and package woes X-Git-Tag: 0.0.4~3 X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=b35e657103b7a93111fe5b16eac6a9c9beadc45f;p=nutratech%2Fnt-sqlite.git remove build.py and package woes --- diff --git a/.gitignore b/.gitignore index a48b547..831a5ab 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ # Other files *.sqlite* .vscode/ +.idea/ #################### diff --git a/.travis.yml b/.travis.yml index 9d26f5a..c978ee6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ language: python python: - '3.6' script: -- python build.py +- python sql/__init__.py notifications: slack: secure: TCGuxW6k2tewO6JUm1BXy5NIEUh6QwjrkMLpdFCpZZwMz49UVO+i8fQKQWB9jTvGyq9Ya+NbW6jfxgJUYfFtmUmfXNCZ/LsKVu3hMPQ5/0yAIsGJayXxCPhIQYmEnA6BZnfnhoYt5R6U5NfLy8WyDwqS3b7uDUWfyxmllunWPNMY5IptrZmOXVSs5s7zqp1pqm9hjN28WiaEzOifsEygai2ZMsmxRUMhrzncRxyhOmw3APyMAvAsHgJw/nbdF1ux7lmvvbFQpOwzDkPdZXcbRdmfruvphaKfHT5TS48Aml81KdKDnk+VMoxD/U/wSW+nnOM0ZcWyYfFuh7/vndF2aMAP/PDq7iAESyFN3YIGXNhGTtHUPLRw7eWoO1CGJqvpkFl2oDj6GbzkO9zsoLg+qxoM7bX+P/ynAQ22M3e/VeSTuC1t8mrHnJZoDTMYrqQRQJDOT0QflZpMRlW5Du/SAkijGURaxGcpR5dt8KP19bd+Sm9k77509nQ576BNaHPn/rJOqdi3LYInMr0VTin/fghfTiPqy4hB3jzV7tl/0jTYAVsbAW73U2KFS95d7r9/BOQptYcCZgpGZu8iT2Q8iQVlUaWGDnGMzo1lWmsdwrEWpofBwC7jeYFDSwRfkdojQfVM4JBKpT5mbqHavRjMKCYWtDk7X6nQIWs32YaWbGQ= diff --git a/README.rst b/README.rst index dbe4c8f..9b087e9 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ Building the database .. code-block:: bash - python build.py + python sql/__init__.py 3. Verify the tables (again inside the SQL shell :code:`sqlite nutra.db`), diff --git a/build.py b/build.py deleted file mode 100755 index 96dd22f..0000000 --- a/build.py +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env python3 -"""Executable script for building nt.sqlite""" - -if __name__ == "__main__": - from sql import build_ntsqlite # pylint: disable=import-error - - build_ntsqlite(verbose=True) diff --git a/sql/tables.sql b/sql/tables.sql index b16bdc9..d8812f7 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -1,4 +1,4 @@ --- nt-sqlite, an sqlite3 database for nutratracker clients +-- ntsqlite, an sqlite3 database for nutratracker clients -- Copyright (C) 2020 Shane Jaroch -- -- This program is free software: you can redistribute it and/or modify