Files
kontor/bottle/setup.py
T
2025-01-09 19:28:50 +01:00

12 lines
222 B
Python

from setuptools import setup
setup(
name='kontor-bottle',
packages=['comics', 'homeoffice', 'library', 'medien'],
include_package_data=True,
install_requires=[
'bottle',
'pymongo'
],
)