Updated index page + Added about and result pages

This commit is contained in:
2023-12-05 15:26:57 +01:00
parent 6d504394ef
commit e71d656d0e
11 changed files with 616 additions and 148 deletions
+23
View File
@@ -0,0 +1,23 @@
import re
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# read the version from classla/_version.py
VERSION = '0.0.1'
setup(name='stark-api',
version=VERSION,
description=u"Stark web application",
author='CLARIN.SI',
author_email='info@clarin.si',
license='Apache 2',
packages=find_packages(),
install_requires=[
'Flask>=3.0.0',
'requests>=2.31.0',
'stark @ git+https://github.com/clarinsi/STARK@master'
],
)