2019-08-20 00:24:51 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
from icalendar_timeseries_server import __version__
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='icalendar_timeseries_server',
|
|
|
|
version=__version__,
|
|
|
|
author='s3lph',
|
|
|
|
author_email='',
|
|
|
|
description='',
|
|
|
|
license='MIT',
|
|
|
|
keywords='ical,icalendar,timeseries,prometheus,grafana',
|
2023-08-12 14:05:06 +02:00
|
|
|
url='https://git.kabelsalat.ch/s3lph/icalendar-timeseries-server',
|
2019-08-20 00:24:51 +02:00
|
|
|
packages=find_packages(exclude=['*.test']),
|
|
|
|
long_description='',
|
|
|
|
python_requires='>=3.6',
|
|
|
|
install_requires=[
|
|
|
|
'bottle',
|
2019-11-18 21:46:41 +01:00
|
|
|
'python-dateutil>=2.8',
|
2019-08-20 00:24:51 +02:00
|
|
|
'icalendar',
|
|
|
|
'isodate',
|
2019-11-18 21:46:41 +01:00
|
|
|
'jinja2'
|
2019-08-20 00:24:51 +02:00
|
|
|
],
|
2023-08-12 14:05:06 +02:00
|
|
|
extras_require={
|
|
|
|
'test': [
|
|
|
|
'coverage',
|
|
|
|
'pycodestyle',
|
|
|
|
'mypy',
|
|
|
|
'twine'
|
|
|
|
]
|
|
|
|
},
|
2019-08-20 00:24:51 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'icalendar-timeseries-server = icalendar_timeseries_server:main'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Bottle',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Topic :: System :: Monitoring'
|
|
|
|
],
|
|
|
|
)
|