1
0
mirror of http://git.k-space.ee/arti/doors.git synced 2024-07-01 11:59:49 +03:00
doors/kdoorweb/setup.py

27 lines
736 B
Python
Raw Normal View History

2020-09-12 19:44:33 +03:00
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'
]
)