forked from statsig-io/statuspage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
setup(
name='flask-server-status',
version='0.0.4',
url='https://github.com/fcoagz/flask-status/',
license='ISC',
author='Francisco Griman',
author_email='[email protected]',
description='It is a Flask extension to view incidents caused by the server',
long_description=(HERE / "README.md").read_text(encoding='utf-8'),
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
platforms='any',
package_data={
'': ['flask_server_status/statsig/templates/*.html', 'flask_server_status/statsig/static/*'],
},
install_requires=[
'setuptools==75.1.0',
'flask>=3.0.0',
'cachetools>=5.5.0',
'apscheduler==3.10.4',
'sqlalchemy==2.0.35',
'marshmallow==3.22.0',
],
classifiers=[
'Framework :: Flask',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
],
)