1
0
mirror of http://git.k-space.ee/arti/doors.git synced 2024-06-29 08:35:28 +03:00
doors/kdoorweb/setup.py
2020-09-12 19:44:33 +03:00

27 lines
736 B
Python

from setuptools import find_packages, setup
setup(
name='kdoorweb',
version='0.0.0',
author="Arti Zirk",
author_email="arti@zirk.me",
description="K-Space Door Administraion Web Interface",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.6',
install_requires=[
'bottle'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: System :: Networking',
'Intended Audience :: System Administrators',
'Framework :: Bottle'
]
)