1
0
Fork 0

Install, stub cli app

main
Jeff Moe 2024-02-11 12:27:47 -07:00
parent 5f1c41c113
commit e2f99fbbcc
5 changed files with 37 additions and 4 deletions

View File

@ -3,3 +3,12 @@ Install
=======
Install tinyparrot.
.. code-block:: bash
git clone https://spacecruft.org/deepcrayon/tinyparrot
cd tinyparrot/
python3 -m venv venv
source venv/bin/activate
pip install -e .

View File

@ -27,10 +27,9 @@ classifiers = [
]
dependencies = [
# CAD dependencies
"pydantic",
"typing_extensions >= 4.4.0, <5",
"tinygrad",
# Code formatting
"black",
# Documentation dependencies
"polib",
"pycountry",

View File

View File

@ -0,0 +1,16 @@
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = version = '0.0.2.dev0+g5f1c41c.d20240211'
__version_tuple__ = version_tuple = (0, 0, 2, 'dev0', 'g5f1c41c.d20240211')

View File

@ -0,0 +1,9 @@
#!/usr/bin/env python3
def main():
print("tinyparrot")
if __name__ == "__main__":
main()