18 lines
459 B
Python
18 lines
459 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name = 'mira-modules',
|
||
|
version = '0.1.0',
|
||
|
description = 'Various modules for mira',
|
||
|
url = 'https://git.polynom.me/PapaTutuWawa/mira-modules',
|
||
|
author = 'Alexander "PapaTutuWawa"',
|
||
|
author_email = 'papatutuwawa <at> polynom.me',
|
||
|
license = 'GPLv3',
|
||
|
packages = find_packages(),
|
||
|
install_requires = [
|
||
|
'mira>=0.1.0',
|
||
|
'requests>=2.23.0'
|
||
|
],
|
||
|
zip_safe=True
|
||
|
)
|