2023-12-05 14:26:57 +00:00
|
|
|
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=[
|
2024-02-19 14:33:19 +00:00
|
|
|
'Flask==3.0.0',
|
|
|
|
'requests==2.31.0',
|
|
|
|
'flask-babel==4.0.0',
|
2024-07-04 11:39:46 +00:00
|
|
|
'stark @ git+https://github.com/clarinsi/STARK@refactoring'
|
2023-12-05 14:26:57 +00:00
|
|
|
],
|
|
|
|
)
|