12 lines
222 B
Python
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'
|
|
],
|
|
)
|