You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
365 B
Python

#!/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'
]}
)