spaceapi-server/setup.py
2019-11-25 02:48:12 +01:00

36 lines
1.1 KiB
Python
Executable file

#!/usr/bin/env python3
from setuptools import setup, find_packages
from spaceapi_server import __version__
setup(
name='spaceapi_server',
version=__version__,
author='s3lph',
author_email='',
description='A lightweight SpaceAPI (spaceapi.io) endpoint server',
license='MIT',
keywords='spaceapi',
url='https://gitlab.com/s3lph/spaceapi-server',
packages=find_packages(exclude=['*.test']),
long_description='A lightweight server for SpaceAPI endpoints. Includes support for pluggable templating, so dynamic content, like sensor values, can be added.',
python_requires='>=3.6',
install_requires=[
'bottle',
'jinja2'
],
entry_points={
'console_scripts': [
'spaceapi-server = spaceapi_server:start'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
]
)