return of the datafiles and a lot of code reformats!

This commit is contained in:
elburg 2023-03-14 15:01:21 -07:00
parent 0ecd2159dd
commit 5cbeb949ea
Signed by: elburg
SSH key fingerprint: SHA256:rSSayCr1za9SXPz4fKkUtsxSl1yVSk5XVUKfvuxe8o0
8 changed files with 120 additions and 91 deletions

16
setup.py Normal file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env python3
from setuptools import setup
setup(
name = 'owo',
version = '0.0.0-alpha0',
description = 'tool to get information on just about everything',
author = 'arris kathery',
python_requires = '>=3.10',
packages = ['owo'],
package_dir = {'owo': 'owo'},
package_data = {'owo': [
'res/locale/*.yaml'
]}
)